summaryrefslogtreecommitdiffstats
path: root/text.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2000-05-30 15:36:40 +0000
committerMike Fulbright <msf@redhat.com>2000-05-30 15:36:40 +0000
commit38ee4b951eec89eb4c290e774f0d742a4b8cb544 (patch)
tree91d737c07fdac49449a9b2119dcbb924f831e9ed /text.py
parent8b9676eb4570ab2ebd9e6d841f52f3bb662080b0 (diff)
downloadanaconda-38ee4b951eec89eb4c290e774f0d742a4b8cb544.tar.gz
anaconda-38ee4b951eec89eb4c290e774f0d742a4b8cb544.tar.xz
anaconda-38ee4b951eec89eb4c290e774f0d742a4b8cb544.zip
added expert mode support for ddruid
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 58647fbc4..e4d588d04 100644
--- a/text.py
+++ b/text.py
@@ -230,7 +230,8 @@ class InstallPathWindow:
todo.intf.messageWindow,
todo.intf.progressWindow,
not todo.expert,
- todo.method.protectedPartitions())
+ todo.method.protectedPartitions(),
+ todo.expert)
return INSTALL_NOOP
classes = installclass.availableClasses()
@@ -287,7 +288,8 @@ class InstallPathWindow:
todo.intf.messageWindow,
todo.intf.progressWindow,
not todo.expert,
- todo.method.protectedPartitions())
+ todo.method.protectedPartitions(),
+ todo.expert)
return INSTALL_OK
@@ -304,7 +306,8 @@ class UpgradeExamineWindow:
todo.intf.messageWindow,
todo.intf.progressWindow,
not todo.expert,
- todo.method.protectedPartitions())
+ todo.method.protectedPartitions(),
+ todo.expert)
return INSTALL_NOOP