~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/__init__.py

  • Committer: John Arbash Meinel
  • Date: 2006-06-11 01:38:11 UTC
  • mto: (1711.7.2 win32)
  • mto: This revision was merged to the branch mainline in revision 1796.
  • Revision ID: john@arbash-meinel.com-20060611013811-1e34025ff9fb98af
Removing hacks for _win32_abspath, on real win32 abspath handles unicode just fine, it doesn't handle encoding into 'mbcs'

Show diffs side-by-side

added added

removed removed

Lines of Context:
703
703
            raise errors.InvalidURL(base, error_str % m.group('proto'))
704
704
        # This doesn't look like a protocol, consider it a local path
705
705
        new_base = urlutils.local_path_to_url(base)
706
 
        mutter('converting os path %r => url %s' , base, new_base)
 
706
        mutter('converting os path %r => url %s', base, new_base)
707
707
        return new_base
708
708
 
709
709
    # Catch any URLs which are passing Unicode rather than ASCII