Can't use super on old style classes

pull/18777/head
jpic 8 years ago committed by Matt Clay
parent a982b95846
commit 776a748eb4

@ -210,7 +210,7 @@ except ImportError:
class UnixHTTPConnection(HTTPConnection): class UnixHTTPConnection(HTTPConnection):
def __init__(self, path, timeout=None): def __init__(self, path, timeout=None):
super(UnixHTTPConnection, self).__init__('localhost', timeout=timeout) HTTPConnection.__init__(self, 'localhost', timeout=timeout)
self.path = path self.path = path
def connect(self): def connect(self):

Loading…
Cancel
Save