~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/__init__.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-03-22 12:17:00 UTC
  • mfrom: (1616.1.10 bzr.mbp.integration)
  • Revision ID: pqm@pqm.ubuntu.com-20060322121700-79ce0be81013aba1
(mbp) pycurl fixes, other fixes, weave commands, verbose commit changes from robert

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