summaryrefslogtreecommitdiffstats
path: root/iw/installpath.py
diff options
context:
space:
mode:
authorpnfisher <pnfisher>1999-08-30 18:18:45 +0000
committerpnfisher <pnfisher>1999-08-30 18:18:45 +0000
commitd7a83cdcfc77fd4dc8915880a608fd53c31a40fa (patch)
tree92ac0916e050d6ce8fdb6caa73d179747f5c500c /iw/installpath.py
parent18ce64b368374dfeee69b351b8af961c0ac9da64 (diff)
downloadanaconda-d7a83cdcfc77fd4dc8915880a608fd53c31a40fa.tar.gz
anaconda-d7a83cdcfc77fd4dc8915880a608fd53c31a40fa.tar.xz
anaconda-d7a83cdcfc77fd4dc8915880a608fd53c31a40fa.zip
Add "package-selection" name.
Diffstat (limited to 'iw/installpath.py')
-rw-r--r--iw/installpath.py22
1 files changed, 11 insertions, 11 deletions
diff --git a/iw/installpath.py b/iw/installpath.py
index 3b25c6f48..ee4f8aa95 100644
--- a/iw/installpath.py
+++ b/iw/installpath.py
@@ -32,9 +32,9 @@ SERVER = 5
class InstallPathWindow (InstallWindow):
installTypes = ((CUSTOM, _("Custom")),
- (WORKSTATION_GNOME, _("GNOME Workstation")),
- (WORKSTATION_KDE, _("KDE Workstation")),
- (SERVER, _("Server")))
+ (WORKSTATION_GNOME, _("GNOME Workstation")),
+ (WORKSTATION_KDE, _("KDE Workstation")),
+ (SERVER, _("Server")))
installSteps = [ ( PartitionWindow, "partition" ),
( FormatWindow, "format" ),
@@ -43,7 +43,7 @@ class InstallPathWindow (InstallWindow):
( TimezoneWindow, "timezone" ),
( AccountWindow, "accounts" ),
( AuthWindow, "authentication" ),
- PackageSelectionWindow,
+ ( PackageSelectionWindow, "package-selection" ),
( UnresolvedDependenciesWindow, "dependencies" ),
InstallProgressWindow,
( BootdiskWindow, "bootdisk" ),
@@ -84,13 +84,13 @@ class InstallPathWindow (InstallWindow):
break
if type == WORKSTATION_GNOME:
- self.todo.setClass(installclass.GNOMEWorkstation())
+ self.todo.setClass (installclass.GNOMEWorkstation ())
elif type == WORKSTATION_KDE:
- self.todo.setClass(installclass.KDEWorkstation())
+ self.todo.setClass (installclass.KDEWorkstation ())
elif type == SERVER:
- self.todo.setClass(installclass.Server())
+ self.todo.setClass (installclass.Server ())
else:
- self.todo.setClass(installclass.CustomInstall())
+ self.todo.setClass (installclass.CustomInstall ())
def toggled (self, widget, type):
if not widget.get_active (): return
@@ -126,9 +126,9 @@ class InstallPathWindow (InstallWindow):
for (type, name) in self.installTypes:
group = GtkRadioButton (group, name)
self.installBox.pack_start (group, FALSE)
- self.installClasses.append((group, type))
+ self.installClasses.append ((group, type))
if (type == default):
- group.set_active(1)
+ group.set_active (1)
spacer = GtkLabel("")
spacer.set_usize(15, 1)
@@ -142,5 +142,5 @@ class InstallPathWindow (InstallWindow):
box.pack_start(table, FALSE)
self.toggled (installButton, INSTALL)
-
+ box.set_border_width (5)
return box