From 1d88acf427c819b0dcb408372637f300c4dfdba7 Mon Sep 17 00:00:00 2001 From: Mark Huang Date: Sat, 18 Nov 2006 18:15:55 +0000 Subject: [PATCH] pass cacert and timeout to safexmlrpc init --- plcapi.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plcapi.py b/plcapi.py index e89663d..86d04c9 100644 --- a/plcapi.py +++ b/plcapi.py @@ -15,7 +15,7 @@ class PLCAPI: the new session-based method. """ - def __init__(self, uri, auth, **kwds): + def __init__(self, uri, cacert, auth, timeout = 300, **kwds): if isinstance(auth, (tuple, list)): (self.node_id, self.key) = auth self.session = None @@ -23,7 +23,7 @@ class PLCAPI: self.node_id = self.key = None self.session = auth - self.server = safexmlrpc.ServerProxy(uri, allow_none = 1, **kwds) + self.server = safexmlrpc.ServerProxy(uri, cacert, timeout, allow_none = 1, **kwds) def add_auth(self, function): """ -- 2.43.0