summaryrefslogtreecommitdiffstats
path: root/textw
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-02-04 21:04:35 +0000
committerJeremy Katz <katzj@redhat.com>2002-02-04 21:04:35 +0000
commit7ed47c9c2c0e59cb0615ada0d2a5dc2673fc664f (patch)
treeace7f2afdfe11a4025bd14d68ce49462afc68153 /textw
parent4ad85d4b7cf71d4fba9910f03dfc7d5fb07576bc (diff)
downloadanaconda-7ed47c9c2c0e59cb0615ada0d2a5dc2673fc664f.tar.gz
anaconda-7ed47c9c2c0e59cb0615ada0d2a5dc2673fc664f.tar.xz
anaconda-7ed47c9c2c0e59cb0615ada0d2a5dc2673fc664f.zip
maybe I should go back to drinking more caffeine...
Diffstat (limited to 'textw')
-rw-r--r--textw/partition_text.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/textw/partition_text.py b/textw/partition_text.py
index 998350ea7..b69a4cef2 100644
--- a/textw/partition_text.py
+++ b/textw/partition_text.py
@@ -211,7 +211,7 @@ class PartitionWindow:
else:
mount = Entry(20, "")
mountgrid.setField(mount, 1, 0, anchorRight = 1, growx = 1)
- if not request.fstype and request.fstype.isMountable():
+ if request.fstype and request.fstype.isMountable():
mount.setFlags(FLAG_DISABLED, FLAGS_SET)
mount.set(_("<Not Applicable>"))
return (mount, mountgrid)