/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

  • Committer: John Arbash Meinel
  • Date: 2007-02-08 21:57:04 UTC
  • mfrom: (2273 +trunk) (2276 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2277.
  • Revision ID: john@arbash-meinel.com-20070208215704-87s4qnsjfqi4x83w
[merge] bzr.dev 2276

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)