/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/http/__init__.py

  • Committer: Jelmer Vernooij
  • Date: 2017-05-21 18:10:28 UTC
  • mto: This revision was merged to the branch mainline in revision 6623.
  • Revision ID: jelmer@jelmer.uk-20170521181028-zn04pdfw0od9hfj3
Rename brzlib => breezy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
import sys
28
28
import weakref
29
29
 
30
 
from brzlib import (
 
30
from breezy import (
31
31
    debug,
32
32
    errors,
33
33
    transport,
34
34
    ui,
35
35
    urlutils,
36
36
    )
37
 
from brzlib.smart import medium
38
 
from brzlib.trace import mutter
39
 
from brzlib.transport import (
 
37
from breezy.smart import medium
 
38
from breezy.trace import mutter
 
39
from breezy.transport import (
40
40
    ConnectedTransport,
41
41
    )
42
42
 
365
365
        raise errors.TransportNotPossible('http does not support delete()')
366
366
 
367
367
    def external_url(self):
368
 
        """See brzlib.transport.Transport.external_url."""
 
368
        """See breezy.transport.Transport.external_url."""
369
369
        # HTTP URL's are externally usable as long as they don't mention their
370
370
        # implementation qualifier
371
371
        url = self._parsed_url.clone()