aboutsummaryrefslogtreecommitdiffstats
path: root/pathod/pathoc.py
diff options
context:
space:
mode:
authorThomas Kriechbaumer <thomas@kriechbaumer.name>2016-05-28 22:25:54 +0200
committerThomas Kriechbaumer <thomas@kriechbaumer.name>2016-05-28 22:44:28 +0200
commite4045dc7f858e1e7d2368819e7ad251f4e1d7f90 (patch)
tree3738591128896da936030438515f51d253c93896 /pathod/pathoc.py
parente5038c9ab7a6718e7a3408a43549231929c7beb9 (diff)
downloadmitmproxy-e4045dc7f858e1e7d2368819e7ad251f4e1d7f90.tar.gz
mitmproxy-e4045dc7f858e1e7d2368819e7ad251f4e1d7f90.tar.bz2
mitmproxy-e4045dc7f858e1e7d2368819e7ad251f4e1d7f90.zip
pathod: fix most flake8 offenses
Diffstat (limited to 'pathod/pathoc.py')
-rw-r--r--pathod/pathoc.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/pathod/pathoc.py b/pathod/pathoc.py
index 8706868b..910387b6 100644
--- a/pathod/pathoc.py
+++ b/pathod/pathoc.py
@@ -41,7 +41,7 @@ class SSLInfo(object):
"Cipher: %s, %s bit, %s" % self.cipher,
"SSL certificate chain:"
]
- for n,i in enumerate(self.certchain):
+ for n, i in enumerate(self.certchain):
parts.append(" Certificate [%s]" % n)
parts.append("\tSubject: ")
for cn in i.get_subject().get_components():
@@ -72,7 +72,6 @@ class SSLInfo(object):
return "\n".join(parts)
-
class WebsocketFrameReader(threading.Thread):
def __init__(