Skip to content

Commit

Permalink
Fix debug in HTTPSConnectionWithTimeout.connect
Browse files Browse the repository at this point in the history
There was one more layer of parentheses than there should have been.

Fixes #161.
  • Loading branch information
cjwatson committed Apr 10, 2020
1 parent 0d490f6 commit 59586b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python3/httplib2/__init__.py
Expand Up @@ -1366,7 +1366,7 @@ def connect(self):
except socket.error as e:
socket_err = e
if self.debuglevel > 0:
print("connect fail: ({0}, {1})".format((self.host, self.port)))
print("connect fail: ({0}, {1})".format(self.host, self.port))
if use_proxy:
print(
"proxy: {0}".format(
Expand Down

0 comments on commit 59586b5

Please sign in to comment.