~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/remote.py

Various small changes in aid of making tests pass (including deleting one invalid test).

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
from bzrlib.smart import client, medium, protocol
34
34
 
35
35
# must do this otherwise urllib can't parse the urls properly :(
36
 
for scheme in ['ssh', 'bzr', 'bzr+loopback', 'bzr+ssh', 'bzr+http']:
 
36
for scheme in ['ssh', 'bzr', 'bzr+loopback', 'bzr+ssh', 'bzr+http',
 
37
               'readonly+bzr']:
37
38
    transport.register_urlparse_netloc_protocol(scheme)
38
39
del scheme
39
40