Merge pull request #3 from jpic/lxd_container_contrib

Can't use super on old style classes
reviewable/pr18780/r1
Hiroaki Nakamura 10 years ago committed by GitHub
commit 7f327cce15

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

Loading…
Cancel
Save