~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/urlutils.py

  • Committer: Aaron Bentley
  • Date: 2007-02-07 03:09:58 UTC
  • mfrom: (2268 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2269.
  • Revision ID: aaron.bentley@utoronto.ca-20070207030958-fx6ykp7rg7zma6xu
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)