summaryrefslogtreecommitdiffstats
path: root/textw
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2000-02-14 21:11:01 +0000
committerMike Fulbright <msf@redhat.com>2000-02-14 21:11:01 +0000
commitd19d553d3891631983ba05cd24174eaddcecceb4 (patch)
tree344af7f7e228f9cd1f93a1f03a8935c30c3a442a /textw
parenta1c33322f743c4a868f20fae275f7021488a7241 (diff)
downloadanaconda-d19d553d3891631983ba05cd24174eaddcecceb4.tar.gz
anaconda-d19d553d3891631983ba05cd24174eaddcecceb4.tar.xz
anaconda-d19d553d3891631983ba05cd24174eaddcecceb4.zip
Fixed bug where going back to Autopartitioning screen, then forwards
would show InstallType screen. Dr Mike
Diffstat (limited to 'textw')
-rw-r--r--textw/partitioning.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/textw/partitioning.py b/textw/partitioning.py
index 30c6979c7..7a7d15418 100644
--- a/textw/partitioning.py
+++ b/textw/partitioning.py
@@ -35,7 +35,8 @@ class ManualPartitionWindow:
def __call__(self, screen, todo):
from newtpyfsedit import fsedit
- if todo.skipFdisk: return INSTALL_NOOP
+ if todo.skipFdisk:
+ return INSTALL_NOOP
driveNames = todo.fstab.driveList()
drives = todo.fstab.drivesByName()
@@ -160,6 +161,8 @@ class AutoPartitionWindow:
todo.fstab.formatAllFilesystems()
todo.instClass.addToSkipList("format")
+ return INSTALL_OK
+
class PartitionWindow:
def __call__(self, screen, todo):
dir = INSTALL_NOOP