summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2002-06-19 16:02:16 +0000
committerMike Fulbright <msf@redhat.com>2002-06-19 16:02:16 +0000
commit2afb3caf69adea3c377a1dede12c48e399f61b74 (patch)
treead27ecfe5160febdcaae3313f31bcd3fb111fd38
parent4b78eac85f9f9af91b7ae4b7e88b06d2c3bc3736 (diff)
downloadanaconda-2afb3caf69adea3c377a1dede12c48e399f61b74.tar.gz
anaconda-2afb3caf69adea3c377a1dede12c48e399f61b74.tar.xz
anaconda-2afb3caf69adea3c377a1dede12c48e399f61b74.zip
fix for bug #65933
-rw-r--r--iw/progress_gui.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/iw/progress_gui.py b/iw/progress_gui.py
index 3c3b01944..bd7803a46 100644
--- a/iw/progress_gui.py
+++ b/iw/progress_gui.py
@@ -118,7 +118,8 @@ class InstallProgressWindow (InstallWindow):
num = min(1, len(self.pixmaps))
pix = self.ics.readPixmap (self.pixmaps[num])
if pix:
- self.adbox.remove (self.adpix)
+ if self.adpix:
+ self.adbox.remove (self.adpix)
pix.set_alignment (0.5, 0.5)
self.adbox.add (pix)
self.adpix = pix