diff options
author | Mike Fulbright <msf@redhat.com> | 2000-06-21 16:01:14 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2000-06-21 16:01:14 +0000 |
commit | 6bf41525b2355ce0de50b74f1d111c67e9033220 (patch) | |
tree | ffcdeda5dc4df4ff1b7774c70479818fd75e577d /text.py | |
parent | 72cadb7337f05c35cc19d8a16caa9a02b11055a2 (diff) | |
download | anaconda-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.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |