From 8d2b365efd7406b389ccdc98c526b675860194ce Mon Sep 17 00:00:00 2001 From: John Finlay Date: Wed, 5 Jul 2006 23:51:09 +0000 Subject: Fix message typo. * gobject/pygiochannel.c (py_io_channel_init): Fix message typo. --- ChangeLog | 4 ++++ gobject/pygiochannel.c | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 0f8acde..d6ac0f2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2006-07-05 John Finlay + + * gobject/pygiochannel.c (py_io_channel_init): Fix message typo. + 2006-06-28 Cedric Gustin * dsextras.py (InstallData): Set datarootdir in .pc file. diff --git a/gobject/pygiochannel.c b/gobject/pygiochannel.c index bb3be9b..aaf3840 100644 --- a/gobject/pygiochannel.c +++ b/gobject/pygiochannel.c @@ -751,10 +751,10 @@ py_io_channel_init(PyGIOChannel *self, PyObject *args, PyObject *kwargs) #endif else { #ifdef G_OS_WIN32 - PyErr_SetString(PyExc_TypeError, "either a valid file descriptor," + PyErr_SetString(PyExc_TypeError, "either a valid file descriptor, " "file name, or window handle must be supplied"); #else - PyErr_SetString(PyExc_TypeError, "either a valid file descriptor" + PyErr_SetString(PyExc_TypeError, "either a valid file descriptor " "or file name must be supplied"); #endif return -1; -- cgit