~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/urlutils.py

  • Committer: Martin Packman
  • Date: 2011-11-15 19:51:36 UTC
  • mto: This revision was merged to the branch mainline in revision 6265.
  • Revision ID: martin.packman@canonical.com-20111115195136-s3aa5x7z7wsvgc0h
Unescape unreserved characters for quoted_path member of URL class

Show diffs side-by-side

added added

removed removed

Lines of Context:
751
751
        else:
752
752
            self.password = None
753
753
        self.port = port
754
 
        self.quoted_path = quoted_path
 
754
        self.quoted_path = _url_hex_escapes_re.sub(_unescape_safe_chars, quoted_path)
755
755
        self.path = urllib.unquote(self.quoted_path)
756
756
 
757
757
    def __eq__(self, other):