diff options
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, |