diff options
Diffstat (limited to 'pathod/pathoc.py')
-rw-r--r-- | pathod/pathoc.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pathod/pathoc.py b/pathod/pathoc.py index f122c14f..e3b4d1ae 100644 --- a/pathod/pathoc.py +++ b/pathod/pathoc.py @@ -1,4 +1,3 @@ -from __future__ import print_function import contextlib import sys import os @@ -34,7 +33,7 @@ class PathocError(Exception): pass -class SSLInfo(object): +class SSLInfo: def __init__(self, certchain, cipher, alp): self.certchain, self.cipher, self.alp = certchain, cipher, alp |