summaryrefslogtreecommitdiffstats
path: root/iw/fdisk.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-09-24 14:13:02 +0000
committerMatt Wilson <msw@redhat.com>1999-09-24 14:13:02 +0000
commit82e00ecd02b4596aa0eaf48f140ba40a254aaf3f (patch)
treef208eb8173fba0332e29427c18cecd003945d7f3 /iw/fdisk.py
parent895febc5598836f4b1e85dfe9556ed4c04729cad (diff)
downloadanaconda-82e00ecd02b4596aa0eaf48f140ba40a254aaf3f.tar.gz
anaconda-82e00ecd02b4596aa0eaf48f140ba40a254aaf3f.tar.xz
anaconda-82e00ecd02b4596aa0eaf48f140ba40a254aaf3f.zip
don't reinit ddruid unless manual partitioning is being done
Diffstat (limited to 'iw/fdisk.py')
-rw-r--r--iw/fdisk.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/iw/fdisk.py b/iw/fdisk.py
index 21fd66921..ecf2d22d3 100644
--- a/iw/fdisk.py
+++ b/iw/fdisk.py
@@ -26,6 +26,11 @@ class FDiskWindow (InstallWindow):
def getNext(self):
from gnomepyfsedit import fsedit
+ from installpath import InstallPathWindow
+ if ((not InstallPathWindow.fdisk) or
+ (not InstallPathWindow.fdisk.get_active ())):
+ return None
+
drives = self.todo.drives.available ().keys ()
drives.sort (isys.compareDrives)