diff options
author | Chris Lumens <clumens@redhat.com> | 2006-02-02 19:54:59 +0000 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2006-02-02 19:54:59 +0000 |
commit | f28b06240b758fcb2e52b13356b5f105f3f5849c (patch) | |
tree | 04e7bfecaa1cae6caf2ae3595a1521760ab0effe /gui.py | |
parent | 74206d27634dafd44852136f81f317e731db1943 (diff) | |
download | anaconda-f28b06240b758fcb2e52b13356b5f105f3f5849c.tar.gz anaconda-f28b06240b758fcb2e52b13356b5f105f3f5849c.tar.xz anaconda-f28b06240b758fcb2e52b13356b5f105f3f5849c.zip |
Fix searching for pirut glade file. Make kickstart interactive mode work.
Diffstat (limited to 'gui.py')
-rwxr-xr-x | gui.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -399,7 +399,8 @@ def addFrame(dialog, title=None, showtitle = 1): def findGladeFile(file): for dir in ("/mnt/source/RHupdates/", "/tmp/updates/", - "ui/", "/usr/share/anaconda/ui/"): + "ui/", "/usr/share/anaconda/ui/", + "/usr/share/pirut/ui/"): fn = dir + file if os.access(fn, os.R_OK): return fn |