diff options
author | Johan Dahlin <johan@src.gnome.org> | 2005-07-04 22:11:07 +0000 |
---|---|---|
committer | Johan Dahlin <johan@src.gnome.org> | 2005-07-04 22:11:07 +0000 |
commit | 073955f4a388d1b5ec9b68722a90c3af25557e98 (patch) | |
tree | 0e17b905401bf5203d6bf00a5754676f52b20df0 | |
parent | d51141d577f90f297fb46327d8120f3cdd45b4fd (diff) | |
download | pygobject-073955f4a388d1b5ec9b68722a90c3af25557e98.tar.gz pygobject-073955f4a388d1b5ec9b68722a90c3af25557e98.tar.xz pygobject-073955f4a388d1b5ec9b68722a90c3af25557e98.zip |
fix docstring typo
-rw-r--r-- | gobject/pygobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gobject/pygobject.c b/gobject/pygobject.c index bde5cae..2c7913d 100644 --- a/gobject/pygobject.c +++ b/gobject/pygobject.c @@ -744,7 +744,7 @@ pygobject_set_data(PyGObject *self, PyObject *args) GQuark quark; PyObject *data; - if (!PyArg_ParseTuple(args, "sO:GObject.get_data", &key, &data)) + if (!PyArg_ParseTuple(args, "sO:GObject.set_data", &key, &data)) return NULL; quark = g_quark_from_string(key); Py_INCREF(data); |