fixed incorrect function name in error message for vs_flip

2008-01-05  Joao S. O. Bueno <gwidion@mpc.com.br>

* plug-ins/pygimp/pygimp-vectors.c: fixed incorrect function name
in error message for vs_flip

svn path=/trunk/; revision=24556
This commit is contained in:
Joao S. O. Bueno 2008-01-07 03:02:58 +00:00 committed by João Sebastião de Oliveira Bueno Calligaris
parent 9a88941195
commit 080cdd66fb
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2008-01-05 Joao S. O. Bueno <gwidion@mpc.com.br>
* plug-ins/pygimp/pygimp-vectors.c: fixed incorrect function name
in error message for vs_flip
2008-01-07 Øyvind Kolås <pippin@gimp.org>
* app/gegl/gimpoperationtilesink.c:

View file

@ -152,7 +152,7 @@ vs_flip(PyGimpVectorsStroke *self, PyObject *args, PyObject *kwargs)
static char *kwlist[] = { "flip_type", "axis", NULL };
if (!PyArg_ParseTupleAndKeywords(args, kwargs, "id:rotate", kwlist,
if (!PyArg_ParseTupleAndKeywords(args, kwargs, "id:flip", kwlist,
&flip_type, &axis))
return NULL;