summaryrefslogtreecommitdiff
path: root/python/libmu_py/message.c
diff options
context:
space:
mode:
Diffstat (limited to 'python/libmu_py/message.c')
-rw-r--r--python/libmu_py/message.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/python/libmu_py/message.c b/python/libmu_py/message.c
index 49827c2f3..fc71cbf0e 100644
--- a/python/libmu_py/message.c
+++ b/python/libmu_py/message.c
@@ -287,7 +287,8 @@ api_message_get_attachment_name (PyObject *self, PyObject *args)
if (!PyArg_ParseTuple (args, "O!", &PyMessageType, &py_msg))
return NULL;
- status = mu_message_aget_attachment_name (py_msg->msg, &name);
+ /* FIXME: CS/Lang info is ignored */
+ status = mu_message_aget_attachment_name (py_msg->msg, &name, NULL);
return status_object (status, PyString_FromString (name ? name : ""));
}

Return to:

Send suggestions and report system problems to the System administrator.