diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2016-06-02 19:55:52 +1200 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2016-06-02 19:55:52 +1200 |
commit | 5fd52970fd30f00d7a7e6ebfb6ce0d4d03942ed3 (patch) | |
tree | 6be769c6b93741af9a19d4b91ad630711c437e97 | |
parent | 69de78515d7d19c72d27439df509cc9294da587f (diff) | |
download | mitmproxy-5fd52970fd30f00d7a7e6ebfb6ce0d4d03942ed3.tar.gz mitmproxy-5fd52970fd30f00d7a7e6ebfb6ce0d4d03942ed3.tar.bz2 mitmproxy-5fd52970fd30f00d7a7e6ebfb6ce0d4d03942ed3.zip |
Satisfy linting gods
-rw-r--r-- | test/pathod/test_test.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/pathod/test_test.py b/test/pathod/test_test.py index ddb41cb3..6399894e 100644 --- a/test/pathod/test_test.py +++ b/test/pathod/test_test.py @@ -2,10 +2,11 @@ import logging import requests from pathod import test import tutils -logging.disable(logging.CRITICAL) import requests.packages.urllib3 + requests.packages.urllib3.disable_warnings() +logging.disable(logging.CRITICAL) class TestDaemonManual: |