From d04fb1ab29682531a3d0754ced5d1c57ebbea01a Mon Sep 17 00:00:00 2001 From: Jeremy Katz Date: Mon, 19 Dec 2005 23:02:33 +0000 Subject: 2005-12-19 Jeremy Katz * gui.py (findPixmap): Fix missing comma --- gui.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gui.py') diff --git a/gui.py b/gui.py index 910659e20..aea6f95cc 100755 --- a/gui.py +++ b/gui.py @@ -413,7 +413,7 @@ def findPixmap(file): "/mnt/source/RHupdates/", "/tmp/updates/pixmaps/", "/tmp/updates/", "/tmp/product/pixmaps/", "/tmp/product/", "pixmaps/", - "/usr/share/anaconda/pixmaps/" + "/usr/share/anaconda/pixmaps/", "/usr/share/pixmaps/", "/usr/share/anaconda/", ""): fn = dir + file @@ -439,6 +439,7 @@ def readImageFromFile(file, height = None, width = None, dither = None, image = None): pixbuf = getPixbuf(file) if pixbuf is None: + log.warning("can't find pixmap %s" %(file,)) return None if (height is not None and width is not None -- cgit