summaryrefslogtreecommitdiffstats
path: root/iw/examine_gui.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2000-06-01 22:30:53 +0000
committerMike Fulbright <msf@redhat.com>2000-06-01 22:30:53 +0000
commit8f83e0d34d8a4bdfc7dc93eb2162bef230303dc5 (patch)
treef56b43a71bea5020f890476ba778618ff1f9d544 /iw/examine_gui.py
parent88accbf6170b2cb7ef48ad2d95362c68dc723d1e (diff)
downloadanaconda-8f83e0d34d8a4bdfc7dc93eb2162bef230303dc5.tar.gz
anaconda-8f83e0d34d8a4bdfc7dc93eb2162bef230303dc5.tar.xz
anaconda-8f83e0d34d8a4bdfc7dc93eb2162bef230303dc5.zip
fix graphical upgrade
Diffstat (limited to 'iw/examine_gui.py')
-rw-r--r--iw/examine_gui.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/iw/examine_gui.py b/iw/examine_gui.py
index b0e41cc4e..81c9f5b89 100644
--- a/iw/examine_gui.py
+++ b/iw/examine_gui.py
@@ -41,10 +41,13 @@ class UpgradeExamineWindow (InstallWindow):
vbox = GtkVBox (FALSE, 5)
if self.parts and len (self.parts) > 1:
+ box.pack_start (GtkLabel (_("Please select the device which "
+ "contains the root filesystem to be "
+ "upgraded.")), FALSE)
self.ics.setNextEnabled (TRUE)
- (self.root, someFilesystem) = self.parts[0]
+ self.root = self.parts[0]
group = None
- for (part, someFilesystem) in self.parts:
+ for part in self.parts:
group = GtkRadioButton (group, part)
group.connect ("toggled", self.toggled, part)
box.pack_start (group, FALSE)