summaryrefslogtreecommitdiff
path: root/cloud/lxd
diff options
context:
space:
mode:
authorjpic <jamespic@gmail.com>2016-06-28 12:38:40 +0200
committerjpic <jamespic@gmail.com>2016-06-28 12:38:40 +0200
commit7ba6915b498e89f213c68f3276fc05fd0147525e (patch)
treef307a139d8477c4f738e55a8cd6913f47270a7b3 /cloud/lxd
parentf68c1a1071c7e4a9280f0b571e9d04e7a426cbc8 (diff)
downloadansible-modules-extras-7ba6915b498e89f213c68f3276fc05fd0147525e.tar.gz
Can't use super on old style classes
Diffstat (limited to 'cloud/lxd')
-rw-r--r--cloud/lxd/lxd_container.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cloud/lxd/lxd_container.py b/cloud/lxd/lxd_container.py
index b9cf4e60..782a51a5 100644
--- a/cloud/lxd/lxd_container.py
+++ b/cloud/lxd/lxd_container.py
@@ -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):