~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/urlutils.py

Merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
405
405
    if not url.endswith('/'):
406
406
        # Nothing to do
407
407
        return url
408
 
    if sys.platform == 'win32' and url.startswith('file:///'):
 
408
    if sys.platform == 'win32' and url.startswith('file://'):
409
409
        return _win32_strip_local_trailing_slash(url)
410
410
 
411
411
    scheme_loc, first_path_slash = _find_scheme_and_separator(url)