summaryrefslogtreecommitdiffstats
path: root/python/xml/py_xml.c
diff options
context:
space:
mode:
Diffstat (limited to 'python/xml/py_xml.c')
-rw-r--r--python/xml/py_xml.c4
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;
}