This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ivank
Recipients ivank
Date 2009-08-23.22:20:11
SpamBayes Score 3.3664057e-06
Marked as misclassified No
Message-id <1251066013.49.0.537044412879.issue6769@psf.upfronthosting.co.za>
In-reply-to
Content
Line 1491 of xmlrpclib.py should be

self._connection = host, httplib.HTTPSConnection(chost, None, **(x509 or
{}))

instead of

self._connection = host, HTTPSConnection(chost, None, **(x509 or {}))

  File
"/opt/Python-latest/lib/python2.7/site-packages/bzrlib/plugins/launchpad/lp_registration.py",
line 166, in send_request
    result = method(*method_params)
  File "/opt/Python-latest/lib/python2.7/xmlrpclib.py", line 1224, in
__call__
    return self.__send(self.__name, args)
  File "/opt/Python-latest/lib/python2.7/xmlrpclib.py", line 1570, in
__request
    verbose=self.__verbose
  File "/opt/Python-latest/lib/python2.7/xmlrpclib.py", line 1264, in
request
    return self.single_request(host, handler, request_body, verbose)
  File "/opt/Python-latest/lib/python2.7/xmlrpclib.py", line 1284, in
single_request
    h = self.make_connection(host)
  File "/opt/Python-latest/lib/python2.7/xmlrpclib.py", line 1491, in
make_connection
    self._connection = host, HTTPSConnection(chost, None, **(x509 or {}))
NameError: global name 'HTTPSConnection' is not defined

bzr 1.15 on python 2.7a0 (linux2)


I think this has been broken for around two weeks, maybe more. I don't
know if this is broken in 3.x.
History
Date User Action Args
2009-08-23 22:20:13ivanksetrecipients: + ivank
2009-08-23 22:20:13ivanksetmessageid: <1251066013.49.0.537044412879.issue6769@psf.upfronthosting.co.za>
2009-08-23 22:20:11ivanklinkissue6769 messages
2009-08-23 22:20:11ivankcreate