summaryrefslogtreecommitdiffstats
path: root/Lib/xmlrpclib.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/xmlrpclib.py')
-rw-r--r--Lib/xmlrpclib.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/xmlrpclib.py b/Lib/xmlrpclib.py
index 0cb9ba6..8c1ef1f 100644
--- a/Lib/xmlrpclib.py
+++ b/Lib/xmlrpclib.py
@@ -720,7 +720,7 @@ class Unmarshaller:
if self._type is None or self._marks:
raise ResponseError()
if self._type == "fault":
- raise apply(Fault, (), self._stack[0])
+ raise Fault(**self._stack[0])
return tuple(self._stack)
def getmethodname(self):
@@ -1213,7 +1213,7 @@ class SafeTransport(Transport):
"your version of httplib doesn't support HTTPS"
)
else:
- return apply(HTTPS, (host, None), x509 or {})
+ return HTTPS(host, None, **(x509 or {}))
##
# Standard server proxy. This class establishes a virtual connection