pychecker fixes, GEDCOM import/export improvements, calendar improvements

svn: r1250
This commit is contained in:
Don Allingham
2003-01-10 05:21:32 +00:00
parent 711323177a
commit 7f514dac82
48 changed files with 489 additions and 480 deletions

View File

@@ -20,7 +20,6 @@
import os
import const
import string
#-------------------------------------------------------------------------
#
@@ -44,8 +43,8 @@ class ImgManip:
if no_pil:
def size(self):
img = GdkImlib.Image(self.src)
return (img.rgb_width,img.rgb_height)
img = gtk.gdk.pixbuf_new_from_file(self.src)
return (img.get_width(),img.get_height())
def fmt_thumbnail(self,dest,width,height,cnv):
w = int(width)