Skip to content

Commit 3a14218

Browse files
author
pgaref
committed
Merge branch 'master' into develop
2 parents e01f00a + f3f7c54 commit 3a14218

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

http_request_randomizer/requests/proxy/requestProxy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def generate_proxied_request(self, url, method="GET", params={}, data={}, header
9999

100100
self.logger.debug("Using proxy: {0}".format(str(self.current_proxy)))
101101
request = requests.request(method, url, proxies={"http": self.current_proxy},
102-
headers=headers, data=data, params=params, timeout=req_timeoutg)
102+
headers=headers, data=data, params=params, timeout=req_timeout)
103103
# Avoid HTTP request errors
104104
if request.status_code == 409:
105105
raise ConnectionError("HTTP Response [409] - Possible Cloudflare DNS resolution error")

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def run_tests(self):
4747

4848
setup(
4949
name='http_request_randomizer',
50-
version='1.0.6',
50+
version='1.0.7',
5151
url='http://pgaref.com/blog/python-proxy',
5252
license='MIT',
5353
author='Panagiotis Garefalakis',

0 commit comments

Comments
 (0)