Removing a debugging line

This commit is contained in:
Tyler Smith 2011-08-01 08:17:34 -07:00
parent fb621bbdf5
commit 88f465f9ce
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ class Client(object):
# Open connection and send request, handling SSL certs
certs = {'key_file':self.key_file, 'cert_file':self.cert_file}
certs = {x:certs[x] for x in certs if x != None}
print connection_type
if self.use_ssl and len(certs):
c = connection_type(self.host, self.port, **certs)
else: