From ceae8d6f0788e37a392d1c595259c5289b7202c5 Mon Sep 17 00:00:00 2001 From: Erik Troan Date: Thu, 16 Dec 1999 20:47:43 +0000 Subject: expert mode enables lilo screens in workstation/server installs --- text.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'text.py') diff --git a/text.py b/text.py index f8f632075..762efa9c1 100644 --- a/text.py +++ b/text.py @@ -217,13 +217,13 @@ class InstallPathWindow: intf.steps = intf.commonSteps + intf.installSteps todo.upgrade = 0 if (choice == 0 and orig != 0): - todo.setClass(installclass.GNOMEWorkstation()) + todo.setClass(installclass.GNOMEWorkstation(todo.expert)) elif (choice == 1 and orig != 1): - todo.setClass(installclass.KDEWorkstation()) + todo.setClass(installclass.KDEWorkstation(todo.expert)) elif (choice == 2 and orig != 2): - todo.setClass(installclass.Server()) + todo.setClass(installclass.Server(todo.expert)) elif (choice == 3 and orig != 3): - todo.setClass(installclass.CustomInstall()) + todo.setClass(installclass.CustomInstall(todo.expert)) return INSTALL_OK class UpgradeExamineWindow: -- cgit