diff options
author | Erik Troan <ewt@redhat.com> | 2000-12-08 17:06:30 +0000 |
---|---|---|
committer | Erik Troan <ewt@redhat.com> | 2000-12-08 17:06:30 +0000 |
commit | 4922407d294e7fd6d6a60757f7caddc35a4b5437 (patch) | |
tree | 17e65598fea8803e7119dc52ea2edce4431748f1 /textw | |
parent | 94be917c2ba3572c4bcc07566f05f5dc46c2b463 (diff) | |
download | anaconda-4922407d294e7fd6d6a60757f7caddc35a4b5437.tar.gz anaconda-4922407d294e7fd6d6a60757f7caddc35a4b5437.tar.xz anaconda-4922407d294e7fd6d6a60757f7caddc35a4b5437.zip |
be a bit more agressive about allowing fdisk partitioning
Diffstat (limited to 'textw')
-rw-r--r-- | textw/partitioning_text.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/textw/partitioning_text.py b/textw/partitioning_text.py index 69ebcd510..d02638e7f 100644 --- a/textw/partitioning_text.py +++ b/textw/partitioning_text.py @@ -8,7 +8,8 @@ from translate import _ class PartitionMethod: def __call__(self, screen, todo): # if instClass has new or old partition info we're in ks so skip - if todo.instClass.partitions or todo.instClass.fstab: + if not todo.getPartitionWarningText() and \ + (todo.instClass.partitions or todo.instClass.fstab): todo.skipFdisk = 1 return INSTALL_NOOP |