/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 bzrlib/smart/client.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-04-09 07:36:41 UTC
  • mfrom: (3297.3.7 unknown-response)
  • Revision ID: pqm@pqm.ubuntu.com-20080409073641-pvhyvdyt42fph5xf
Better infrastructure for dealing with 'bad request' responses from a
        smart server. (Andrew Bennetts)

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
from urlparse import urlparse
19
19
 
20
20
from bzrlib.smart import protocol
21
 
from bzrlib import urlutils
 
21
from bzrlib import (
 
22
    errors,
 
23
    urlutils,
 
24
    )
22
25
 
23
26
 
24
27
class _SmartClient(object):
95
98
            
96
99
        rel_url = urlutils.relative_url(medium_base, transport.base)
97
100
        return urllib.unquote(rel_url)
 
101