diff options
author | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2016-05-28 22:39:30 +0200 |
---|---|---|
committer | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2016-05-28 22:45:15 +0200 |
commit | 7971dce2231bc32c25b962d425d8ad935568a699 (patch) | |
tree | 094947e14d55fdf14dfb3bf2fab0eff76f7a1172 /mitmproxy/dump.py | |
parent | e4045dc7f858e1e7d2368819e7ad251f4e1d7f90 (diff) | |
download | mitmproxy-7971dce2231bc32c25b962d425d8ad935568a699.tar.gz mitmproxy-7971dce2231bc32c25b962d425d8ad935568a699.tar.bz2 mitmproxy-7971dce2231bc32c25b962d425d8ad935568a699.zip |
mitmproxy: fix most flake8 offenses
Diffstat (limited to 'mitmproxy/dump.py')
-rw-r--r-- | mitmproxy/dump.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mitmproxy/dump.py b/mitmproxy/dump.py index f1eabdb8..8f9488be 100644 --- a/mitmproxy/dump.py +++ b/mitmproxy/dump.py @@ -74,8 +74,8 @@ class DumpMaster(flow.FlowMaster): if self.server and self.server.config.http2 and not tcp.HAS_ALPN: # pragma: no cover print("ALPN support missing (OpenSSL 1.0.2+ required)!\n" - "HTTP/2 is disabled. Use --no-http2 to silence this warning.", - file=sys.stderr) + "HTTP/2 is disabled. Use --no-http2 to silence this warning.", + file=sys.stderr) if options.filtstr: self.filt = filt.parse(options.filtstr) |