~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/__init__.py

  • Committer: Martin Pool
  • Date: 2006-03-20 18:27:52 UTC
  • mfrom: (1607.1.9 integration)
  • mto: This revision was merged to the branch mainline in revision 1621.
  • Revision ID: mbp@sourcefrog.net-20060320182752-44ffa76314daacb6
[merge] robertc
Fix timing dependency in hashcache test that would sometimes cause
false failure.

Show diffs side-by-side

added added

removed removed

Lines of Context:
648
648
 
649
649
def urlunescape(relpath):
650
650
    """Unescape relpath from url format."""
651
 
    import urllib
652
651
    return urllib.unquote(relpath)
653
652
    # TODO de-utf8 it last. relpath = utf8relpath.decode('utf8')
654
653