~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/plugins/launchpad/lp_registration.py

  • Committer: Martin Packman
  • Date: 2012-01-05 10:37:58 UTC
  • mto: This revision was merged to the branch mainline in revision 6427.
  • Revision ID: martin.packman@canonical.com-20120105103758-wzftnmsip5iv9n2g
Revert addition of get_message_encoding function

Show diffs side-by-side

added added

removed removed

Lines of Context:
166
166
            # the url?  perhaps a bit more secure against accidentally
167
167
            # revealing it.  std66 s3.2.1 discourages putting the
168
168
            # password in the url.
169
 
            hostinfo = '%s:%s@%s' % (urllib.quote(self.registrant_email),
170
 
                                     urllib.quote(self.registrant_password),
 
169
            hostinfo = '%s:%s@%s' % (urlutils.quote(self.registrant_email),
 
170
                                     urlutils.quote(self.registrant_password),
171
171
                                     hostinfo)
172
172
            url = urlunsplit((scheme, hostinfo, path, '', ''))
173
173
        else: