/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/transport/__init__.py

  • Committer: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2021-01-10 01:31:27 UTC
  • mfrom: (7526.2.2 merge-3.1)
  • mto: This revision was merged to the branch mainline in revision 7532.
  • Revision ID: breezy.the.bot@gmail.com-20210110013127-vn6x2k2uv21p805n
Merge lp:brz/3.1

Merged from https://code.launchpad.net/~jelmer/brz/merge-3.1/+merge/396037

Show diffs side-by-side

added added

removed removed

Lines of Context:
1655
1655
register_transport_proto('http+urllib://',
1656
1656
                         #                help="Read-only access of branches exported on the web."
1657
1657
                         register_netloc=True)
1658
 
register_lazy_transport('http+urllib://', 'breezy.transport.http',
 
1658
register_lazy_transport('http+urllib://', 'breezy.transport.http.urllib',
1659
1659
                        'HttpTransport')
1660
1660
register_transport_proto('https+urllib://',
1661
1661
                         #                help="Read-only access of branches exported on the web using SSL."
1662
1662
                         register_netloc=True)
1663
 
register_lazy_transport('https+urllib://', 'breezy.transport.http',
 
1663
register_lazy_transport('https+urllib://', 'breezy.transport.http.urllib',
1664
1664
                        'HttpTransport')
1665
1665
# Default http transports (last declared wins (if it can be imported))
1666
1666
register_transport_proto('http://',
1668
1668
register_transport_proto('https://',
1669
1669
                         help="Read-only access of branches exported on the web using SSL.")
1670
1670
# The default http implementation is urllib
1671
 
register_lazy_transport('http://', 'breezy.transport.http',
 
1671
register_lazy_transport('http://', 'breezy.transport.http.urllib',
1672
1672
                        'HttpTransport')
1673
 
register_lazy_transport('https://', 'breezy.transport.http',
 
1673
register_lazy_transport('https://', 'breezy.transport.http.urllib',
1674
1674
                        'HttpTransport')
1675
1675
 
1676
1676
register_transport_proto(