From 2788784d312509cf5b3700f966fa6da84cb7fe65 Mon Sep 17 00:00:00 2001 From: kramm Date: Sat, 3 Dec 2005 14:28:03 +0000 Subject: [PATCH] fixed typo in error message --- lib/python/tags.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/python/tags.c b/lib/python/tags.c index 2434d44..3683673 100644 --- a/lib/python/tags.c +++ b/lib/python/tags.c @@ -630,7 +630,7 @@ static PyObject* image_save(PyObject*self, PyObject*args) { tag_internals_t*itag = tag_getinternals(self); if(!image_parse(itag)) - return PY_ERROR("Couldn't parse shape"); + return PY_ERROR("Couldn't parse image"); image_internal_t*fi = (image_internal_t*)itag->data; char*filename = 0; -- 1.7.10.4