/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/urlutils.py

Merge from bzr.dev.hpss.api.changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
448
448
    if not url.endswith('/'):
449
449
        # Nothing to do
450
450
        return url
451
 
    if sys.platform == 'win32' and url.startswith('file:///'):
 
451
    if sys.platform == 'win32' and url.startswith('file://'):
452
452
        return _win32_strip_local_trailing_slash(url)
453
453
 
454
454
    scheme_loc, first_path_slash = _find_scheme_and_separator(url)