Skip to content

Commit 4dfd222

Browse files
committed
Fixing the init of the proxy code.
1 parent daaf280 commit 4dfd222

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

github2/request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def __init__(self, username=None, api_token=None, url_prefix=None,
7878
'Install a Python SOCKS library.')
7979
else:
8080
proxy_info = httplib2.ProxyInfo(socks.PROXY_TYPE_HTTP,
81-
proxy_host, proxy_port),
81+
proxy_host, proxy_port)
8282
self._http = httplib2.Http(proxy_info=proxy_info, cache=cache)
8383

8484
def encode_authentication_data(self, extra_post_data):

0 commit comments

Comments
 (0)