diff options
author | Valery Febvre <vfebvre at easter-eggs.com> | 2004-07-09 16:07:36 +0000 |
---|---|---|
committer | Valery Febvre <vfebvre at easter-eggs.com> | 2004-07-09 16:07:36 +0000 |
commit | 425c710ee7d7cfbbb496909b24ce038c2f6768b8 (patch) | |
tree | 237b350fad8d6b14679906e198a0080f1e13cb0f /python/xml/py_xml.c | |
parent | 32b13e03dce0109b3445fda6b8d895a053353b6b (diff) | |
download | lasso-425c710ee7d7cfbbb496909b24ce038c2f6768b8.tar.gz lasso-425c710ee7d7cfbbb496909b24ce038c2f6768b8.tar.xz lasso-425c710ee7d7cfbbb496909b24ce038c2f6768b8.zip |
*** empty log message ***
Diffstat (limited to 'python/xml/py_xml.c')
-rw-r--r-- | python/xml/py_xml.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/xml/py_xml.c b/python/xml/py_xml.c index 3a64a13e..743fe862 100644 --- a/python/xml/py_xml.c +++ b/python/xml/py_xml.c @@ -112,8 +112,8 @@ PyObject *node_export_to_query(PyObject *self, PyObject *args) { const gchar *private_key_file; gchar *ret; - if (CheckArgs(args, "OIS:node_export_to_query")) { - if(!PyArg_ParseTuple(args, (char *) "Ois:node_export_to_query", + if (CheckArgs(args, "Ois:node_export_to_query")) { + if(!PyArg_ParseTuple(args, (char *) "Oiz:node_export_to_query", &node_obj, &sign_method, &private_key_file)) return NULL; } |