summaryrefslogtreecommitdiffstats
path: root/iw
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-09-20 19:34:25 +0000
committerMatt Wilson <msw@redhat.com>1999-09-20 19:34:25 +0000
commit67b33653ff35aac8369764acf6509fea01f1cc35 (patch)
tree4ff45069fccdd653ea29c9fa72e163846510bc1a /iw
parent4034b47ea08ef4888c09769b0fd265940f87b97c (diff)
downloadanaconda-67b33653ff35aac8369764acf6509fea01f1cc35.tar.gz
anaconda-67b33653ff35aac8369764acf6509fea01f1cc35.tar.xz
anaconda-67b33653ff35aac8369764acf6509fea01f1cc35.zip
missing critical 'not'
Diffstat (limited to 'iw')
-rw-r--r--iw/fdisk.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/iw/fdisk.py b/iw/fdisk.py
index f849335a9..b60abc6bb 100644
--- a/iw/fdisk.py
+++ b/iw/fdisk.py
@@ -24,7 +24,7 @@ class FDiskWindow (InstallWindow):
zvt = ZvtTerm (80, 24)
zvt.connect ("child_died", self.child_died, widget)
if zvt.forkpty() == 0:
- if os.access ("/usr/sbin/fdisk", os.X_OK):
+ if not os.access ("/usr/sbin/fdisk", os.X_OK):
path = "/usr/sbin/fdisk"
else:
path = "/sbin/fdisk"