summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-04-15 22:00:46 +0000
committerJeremy Katz <katzj@redhat.com>2002-04-15 22:00:46 +0000
commitd43ae9e72766771af7d4736a1709994aa2d45ad7 (patch)
treeae626bb43a645885aec70597d449fd011fb4eb1e
parent0f13777b50fbb98ccd27b096cdfd35126c9a3146 (diff)
downloadanaconda-d43ae9e72766771af7d4736a1709994aa2d45ad7.tar.gz
anaconda-d43ae9e72766771af7d4736a1709994aa2d45ad7.tar.xz
anaconda-d43ae9e72766771af7d4736a1709994aa2d45ad7.zip
and back to translated rnotes
-rw-r--r--iw/progress_gui.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/iw/progress_gui.py b/iw/progress_gui.py
index 30eabb132..ae83abd1f 100644
--- a/iw/progress_gui.py
+++ b/iw/progress_gui.py
@@ -165,13 +165,9 @@ class InstallProgressWindow (InstallWindow):
shortlang = ''
pixmaps1 = glob.glob("/usr/share/anaconda/pixmaps/rnotes/%s/*.png" % shortlang)
- pixmaps2 = glob.glob("/usr/share/anaconda/pixmaps/rnotes/*.png")
- if len(pixmaps1) > 0 or len(pixmaps2) > 0:
- if len(pixmaps1) < len(pixmaps2):
- files = pixmaps2
- else:
- files = pixmaps1
+ if len(pixmaps1) > 0:
+ files = pixmaps1
else:
files = ["progress_first.png"]