aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShadab Zafar <dufferzafar0@gmail.com>2016-06-15 10:31:19 +0530
committerThomas Kriechbaumer <thomas@kriechbaumer.name>2016-06-15 09:49:39 +0200
commit52fa1952044b368e3b28512e9f2008801473686b (patch)
treeaae1aa3aab65fc307e0d0f2362962bdc34c45479
parent03ce09ca99d907becc30197038fdb17cbd3f3151 (diff)
downloadmitmproxy-52fa1952044b368e3b28512e9f2008801473686b.tar.gz
mitmproxy-52fa1952044b368e3b28512e9f2008801473686b.tar.bz2
mitmproxy-52fa1952044b368e3b28512e9f2008801473686b.zip
Unexpected spaces around =
-rw-r--r--pathod/pathoc.py2
-rw-r--r--test/pathod/test_pathoc.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/pathod/pathoc.py b/pathod/pathoc.py
index 9194dd07..478ce2a2 100644
--- a/pathod/pathoc.py
+++ b/pathod/pathoc.py
@@ -225,7 +225,7 @@ class Pathoc(tcp.TCPClient):
"HTTP/2 requires ALPN support. "
"Please use OpenSSL >= 1.0.2. "
"Pathoc might not be working as expected without ALPN.",
- timestamp = False
+ timestamp=False
)
self.protocol = http2.HTTP2Protocol(self, dump_frames=self.http2_framedump)
else:
diff --git a/test/pathod/test_pathoc.py b/test/pathod/test_pathoc.py
index 8515fc22..05cf518d 100644
--- a/test/pathod/test_pathoc.py
+++ b/test/pathod/test_pathoc.py
@@ -74,7 +74,7 @@ class TestDaemonSSL(PathocTestDaemon):
("127.0.0.1", self.d.port),
use_http2=True,
ssl=False,
- fp = fp
+ fp=fp
)
tutils.raises(NotImplementedError, c.connect)