~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/urlutils.py

  • Committer: Andrew Bennetts
  • Date: 2010-10-13 00:26:41 UTC
  • mto: This revision was merged to the branch mainline in revision 5498.
  • Revision ID: andrew.bennetts@canonical.com-20101013002641-9tlh9k89mlj1666m
Keep docs-plain working.

Show diffs side-by-side

added added

removed removed

Lines of Context:
224
224
        return '/'
225
225
 
226
226
    # usual local path with drive letter
227
 
    if (len(win32_url) < 6
228
 
        or win32_url[3] not in ('abcdefghijklmnopqrstuvwxyz'
229
 
                                'ABCDEFGHIJKLMNOPQRSTUVWXYZ')
 
227
    if (win32_url[3] not in ('abcdefghijklmnopqrstuvwxyz'
 
228
                             'ABCDEFGHIJKLMNOPQRSTUVWXYZ')
230
229
        or win32_url[4] not in  '|:'
231
230
        or win32_url[5] != '/'):
232
231
        raise errors.InvalidURL(url, 'Win32 file urls start with'