diff options
author | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2015-06-18 11:07:33 +0200 |
---|---|---|
committer | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2015-06-18 11:07:33 +0200 |
commit | 65be004bb2e0f8ba9a4712d0172bb0d0151a33bb (patch) | |
tree | efc377e4d4688264ca12e19f35d00ac04f4104ba /libpathod/pathoc.py | |
parent | bd0cfef357ff33ab8be216998e8de69c1784c043 (diff) | |
download | mitmproxy-65be004bb2e0f8ba9a4712d0172bb0d0151a33bb.tar.gz mitmproxy-65be004bb2e0f8ba9a4712d0172bb0d0151a33bb.tar.bz2 mitmproxy-65be004bb2e0f8ba9a4712d0172bb0d0151a33bb.zip |
fix prospector code smells
Diffstat (limited to 'libpathod/pathoc.py')
-rw-r--r-- | libpathod/pathoc.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libpathod/pathoc.py b/libpathod/pathoc.py index c42cc82a..b2a8ec22 100644 --- a/libpathod/pathoc.py +++ b/libpathod/pathoc.py @@ -25,7 +25,7 @@ class PathocError(Exception): pass -class SSLInfo: +class SSLInfo(object): def __init__(self, certchain, cipher, alp): self.certchain, self.cipher, self.alp = certchain, cipher, alp @@ -65,7 +65,7 @@ class SSLInfo: return "\n".join(parts) -class Response: +class Response(object): def __init__( self, httpversion, |