Fix failing exit node retry test

The urllib3 retries.history wasn't working anyways

Signed-off-by: Jesús <heckyel@hyperbola.info>
This commit is contained in:
James Taylor 2022-02-15 21:19:52 -08:00 committed by Jesús
parent 3f4db4199c
commit 4768835766
No known key found for this signature in database
GPG Key ID: F6EE7BC59A315766

View File

@ -336,8 +336,7 @@ def fetch_url(url, headers=(), timeout=15, report_text=None, data=None,
)
)
):
print(response.status, response.reason, response.retries.history,
response.getheaders())
print(response.status, response.reason, response.getheaders())
ip = re.search(
br'IP address: ((?:[\da-f]*:)+[\da-f]+|(?:\d+\.)+\d+)',
content)