/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: Jelmer Vernooij
  • Date: 2021-01-10 00:25:52 UTC
  • mfrom: (7490.40.131 work)
  • mto: (7526.3.1 work)
  • mto: This revision was merged to the branch mainline in revision 7532.
  • Revision ID: jelmer@jelmer.uk-20210110002552-wnvuqtqin7uhjv3v
Merge lp:brz/3.1.

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(