~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/http/_urllib2_wrappers.py

  • Committer: Vincent Ladeuil
  • Date: 2007-11-25 14:05:34 UTC
  • mto: (3928.1.1 bzr.integration)
  • mto: This revision was merged to the branch mainline in revision 3929.
  • Revision ID: v.ladeuil+lp@free.fr-20071125140534-g4f5b3mrfksjz2gx
Update ssl generated files. Put the branch on the backburner until the ssl python module is fixed (bugs pending).

* bzrlib/tests/ssl_certs/create_ssls.py:
Fix typo. Make the inputs used by _openssl more obvious in calls.

* bzrlib/transport/http/_urllib2_wrappers.py:
(HTTPSConnection.__init__): httplib.py deleted that useful debug
message, reenable it for https.

Show diffs side-by-side

added added

removed removed

Lines of Context:
166
166
        self.proxied_host = proxied_host
167
167
 
168
168
    def connect(self):
 
169
        if self.debuglevel > 0:
 
170
            print "connect: (%s, %s)" % (self.host, self.port)
169
171
        httplib.HTTPConnection.connect(self)
170
172
        if self.proxied_host is None:
171
173
            self.connect_to_origin()