diff options
Diffstat (limited to 'python')
| -rw-r--r-- | python/environs/py_logout.c | 2 | ||||
| -rw-r--r-- | python/lasso.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/python/environs/py_logout.c b/python/environs/py_logout.c index 1333e40f..68904059 100644 --- a/python/environs/py_logout.c +++ b/python/environs/py_logout.c @@ -144,7 +144,7 @@ PyObject *logout_init_request(PyObject *self, PyObject *args) { gint codeError; if (CheckArgs(args, "Os:logout_init_request")) { - if(!PyArg_ParseTuple(args, (char *) "O|s:logout_init_request", + if(!PyArg_ParseTuple(args, (char *) "Oz:logout_init_request", &logout_obj, &remote_providerID)) return NULL; } diff --git a/python/lasso.py b/python/lasso.py index 6b2ac265..dd8690c9 100644 --- a/python/lasso.py +++ b/python/lasso.py @@ -1056,7 +1056,7 @@ class FederationTermination: def destroy(self): pass - def init_notification(self, remote_providerID): + def init_notification(self, remote_providerID = None): return lassomod.federation_termination_init_notification(self, remote_providerID); def process_notification_msg(self, notification_msg, notification_method): |
