From 053dc73afe1f4a7a0705c561699110b593fb89b4 Mon Sep 17 00:00:00 2001 From: Alex Roitman Date: Thu, 15 May 2003 03:19:43 +0000 Subject: [PATCH] Case change for decoder svn: r1533 --- gramps2/src/ImgManip.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gramps2/src/ImgManip.py b/gramps2/src/ImgManip.py index be2c01048..c59916fc4 100644 --- a/gramps2/src/ImgManip.py +++ b/gramps2/src/ImgManip.py @@ -1,7 +1,7 @@ # # Gramps - a GTK+/GNOME based genealogy program # -# Copyright (C) 2000 Donald N. Allingham +# Copyright (C) 2000-2003 Donald N. Allingham # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -110,7 +110,7 @@ class ImgManip: if im.mode != 'RGB': im.draft('RGB',im.size) im = im.convert("RGB") - return im.tostring(pil.upper(),"RGB") + return im.tostring(pil,"RGB") def jpg_thumbnail(self,dest,width,height): self.fmt_thumbnail(dest,width,height,"jpeg")