From 7296d70c9a0fa0322c045ee93fd488af3afa03e9 Mon Sep 17 00:00:00 2001 From: Daniel Hokka Zakrisson Date: Thu, 29 Nov 2007 22:25:18 +0000 Subject: [PATCH] Run xmlrpclib.Transport's __init__ too (required on F7). --- PLC/PyCurl.py | 1 + 1 file changed, 1 insertion(+) diff --git a/PLC/PyCurl.py b/PLC/PyCurl.py index f0d4005..a494fa7 100644 --- a/PLC/PyCurl.py +++ b/PLC/PyCurl.py @@ -15,6 +15,7 @@ from tempfile import NamedTemporaryFile class PyCurlTransport(xmlrpclib.Transport): def __init__(self, uri, cert = None, timeout = 300): + xmlrpclib.Transport.__init__(self) self.curl = pycurl.Curl() # Suppress signals -- 2.43.0