#fix_install_errors.patch - David Futcher (bobbo) #Fixes errors when installing MeMaker when Python version is < 2.5 === modified file 'MeMaker/image_loader.py' --- MeMaker/image_loader.py 2008-06-20 00:51:32 +0000 +++ MeMaker/image_loader.py 2008-07-12 11:27:48 +0000 @@ -29,7 +29,7 @@ import StringIO import pickle -class ImageLoader(): +class ImageLoader: def __init__(self, width, height, bgcolor, scale_method = gtk.gdk.INTERP_BILINEAR): self._width = width self._height = height === modified file 'MeMaker/image_loader_dummy.py' --- MeMaker/image_loader_dummy.py 2008-06-20 01:22:38 +0000 +++ MeMaker/image_loader_dummy.py 2008-07-12 11:27:51 +0000 @@ -22,7 +22,7 @@ import os import gtk -class ImageLoader(): +class ImageLoader: def __init__(self, width, height, bgcolor, scale_method = gtk.gdk.INTERP_BILINEAR): pass