summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Pogonyshev <pogonyshev@gmx.net>2008-08-16 20:13:26 +0000
committerPaul Pogonyshev <paulp@src.gnome.org>2008-08-16 20:13:26 +0000
commit70ede7ebbceb28e420c31d5ceb68e8abdd6216a5 (patch)
treefd203e5a1f93416bc489ca77c6e701283b9dc696
parent4991c857b02660f070a9819a82e8d90f5ae0ed91 (diff)
downloadpygobject-70ede7ebbceb28e420c31d5ceb68e8abdd6216a5.tar.gz
pygobject-70ede7ebbceb28e420c31d5ceb68e8abdd6216a5.tar.xz
pygobject-70ede7ebbceb28e420c31d5ceb68e8abdd6216a5.zip
Fix keywords getting out of sync with actual argument order.
2008-08-16 Paul Pogonyshev <pogonyshev@gmx.net> * gio/gfile.override (_wrap_g_file_enumerate_children_async): Fix keywords getting out of sync with actual argument order. svn path=/trunk/; revision=949
-rw-r--r--ChangeLog5
-rw-r--r--gio/gfile.override2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index a0580ef..7fd39d3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-08-16 Paul Pogonyshev <pogonyshev@gmx.net>
+
+ * gio/gfile.override (_wrap_g_file_enumerate_children_async): Fix
+ keywords getting out of sync with actual argument order.
+
2008-08-13 Paul Pogonyshev <pogonyshev@gmx.net>
Bug 547495 – wrap four important asynchronous methods in gio.Drive
diff --git a/gio/gfile.override b/gio/gfile.override
index ffcfad0..3a6f129 100644
--- a/gio/gfile.override
+++ b/gio/gfile.override
@@ -281,7 +281,7 @@ override g_file_enumerate_children_async kwargs
static PyObject *
_wrap_g_file_enumerate_children_async(PyGObject *self, PyObject *args, PyObject *kwargs)
{
- static char *kwlist[] = { "attributes", "flags", "callback",
+ static char *kwlist[] = { "attributes", "callback", "flags",
"io_priority", "cancellable", "user_data", NULL };
PyGIONotify *notify;
char *attributes;