summaryrefslogtreecommitdiffstats
path: root/text.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2000-06-21 16:01:14 +0000
committerMike Fulbright <msf@redhat.com>2000-06-21 16:01:14 +0000
commit6bf41525b2355ce0de50b74f1d111c67e9033220 (patch)
treeffcdeda5dc4df4ff1b7774c70479818fd75e577d /text.py
parent72cadb7337f05c35cc19d8a16caa9a02b11055a2 (diff)
downloadanaconda-6bf41525b2355ce0de50b74f1d111c67e9033220.tar.gz
anaconda-6bf41525b2355ce0de50b74f1d111c67e9033220.tar.xz
anaconda-6bf41525b2355ce0de50b74f1d111c67e9033220.zip
HJ patch.8 to make upgrades ignore bad partition tables
Diffstat (limited to 'text.py')
-rw-r--r--text.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/text.py b/text.py
index 9072c8341..b268703d2 100644
--- a/text.py
+++ b/text.py
@@ -148,7 +148,7 @@ class InstallPathWindow:
todo.intf.progressWindow,
not todo.expert,
todo.method.protectedPartitions(),
- todo.expert)
+ todo.expert, todo.upgrade)
return INSTALL_NOOP
classes = installclass.availableClasses()
@@ -206,7 +206,7 @@ class InstallPathWindow:
todo.intf.progressWindow,
not todo.expert,
todo.method.protectedPartitions(),
- todo.expert)
+ todo.expert, todo.upgrade)
return INSTALL_OK
@@ -224,7 +224,7 @@ class UpgradeExamineWindow:
todo.intf.progressWindow,
not todo.expert,
todo.method.protectedPartitions(),
- todo.expert)
+ todo.expert, 1)
return INSTALL_NOOP