summaryrefslogtreecommitdiffstats
path: root/text.py
diff options
context:
space:
mode:
Diffstat (limited to 'text.py')
-rw-r--r--text.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/text.py b/text.py
index 1015e421a..169ab7c2a 100644
--- a/text.py
+++ b/text.py
@@ -227,7 +227,8 @@ class InstallPathWindow:
todo.fstab = NewtFstab(todo.setupFilesystems,
todo.serial, 0, 0,
todo.intf.waitWindow,
- todo.intf.messageWindow)
+ todo.intf.messageWindow,
+ not todo.expert)
return INSTALL_NOOP
classes = installclass.availableClasses()
@@ -281,7 +282,8 @@ class InstallPathWindow:
todo.fstab = NewtFstab(todo.setupFilesystems,
todo.serial, 0, 0,
todo.intf.waitWindow,
- todo.intf.messageWindow)
+ todo.intf.messageWindow,
+ not todo.expert)
return INSTALL_OK
@@ -295,7 +297,8 @@ class UpgradeExamineWindow:
todo.fstab = NewtFstab(todo.setupFilesystems,
todo.serial, 0, 0,
todo.intf.waitWindow,
- todo.intf.messageWindow)
+ todo.intf.messageWindow,
+ not todo.expert)
return INSTALL_NOOP
parts = todo.upgradeFindRoot ()