summaryrefslogtreecommitdiffstats
path: root/gui.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2005-12-19 23:02:33 +0000
committerJeremy Katz <katzj@redhat.com>2005-12-19 23:02:33 +0000
commitd04fb1ab29682531a3d0754ced5d1c57ebbea01a (patch)
tree3245e59a17910aaa7c5b2094b2a84e05c12ca3ef /gui.py
parent0e7cf99423c944e7041309ca3578e1193ee2595c (diff)
downloadanaconda-d04fb1ab29682531a3d0754ced5d1c57ebbea01a.tar.gz
anaconda-d04fb1ab29682531a3d0754ced5d1c57ebbea01a.tar.xz
anaconda-d04fb1ab29682531a3d0754ced5d1c57ebbea01a.zip
2005-12-19 Jeremy Katz <katzj@redhat.com>
* gui.py (findPixmap): Fix missing comma
Diffstat (limited to 'gui.py')
-rwxr-xr-xgui.py3
1 files changed, 2 insertions, 1 deletions
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