~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/urlutils.py

  • Committer: Patch Queue Manager
  • Date: 2011-09-08 11:01:15 UTC
  • mfrom: (6123.1.16 gpg-typo)
  • Revision ID: pqm@cupuasso-20110908110115-gbb9benwkdksvzk5
(jelmer) Fix a typo (invalid format identifier) in an error message in
 bzrlib.gpg. (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
388
388
    """On win32 the drive letter needs to be added to the url base."""
389
389
    # Strip off the drive letter
390
390
    # path is currently /C:/foo
391
 
    if len(path) < 3 or path[2] not in ':|' or path[3] != '/':
 
391
    if len(path) < 4 or path[2] not in ':|' or path[3] != '/':
392
392
        raise errors.InvalidURL(url_base + path,
393
393
            'win32 file:/// paths need a drive letter')
394
394
    url_base += path[0:3] # file:// + /C: