summaryrefslogtreecommitdiffstats
path: root/textw
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-05-29 23:57:47 +0000
committerJeremy Katz <katzj@redhat.com>2002-05-29 23:57:47 +0000
commit09d3f7d0c9a6c65a300824ce897d725bd998baaf (patch)
tree9d2c5012838b9ea21dde5c34a1ccd14f1cdf900c /textw
parentb333348905f59e8adbd1fb3e1dd40d0ae9870bd2 (diff)
downloadanaconda-09d3f7d0c9a6c65a300824ce897d725bd998baaf.tar.gz
anaconda-09d3f7d0c9a6c65a300824ce897d725bd998baaf.tar.xz
anaconda-09d3f7d0c9a6c65a300824ce897d725bd998baaf.zip
kill annoying but that prevented you from editing mountpoints on partitions
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 433321a3a..414869764 100644
--- a/textw/partition_text.py
+++ b/textw/partition_text.py
@@ -215,7 +215,7 @@ class PartitionWindow:
else:
mount = Entry(20, "")
mountgrid.setField(mount, 1, 0, anchorRight = 1, growx = 1)
- if request.fstype and request.fstype.isMountable():
+ if request.fstype and not request.fstype.isMountable():
mount.setFlags(FLAG_DISABLED, FLAGS_SET)
mount.set(_("<Not Applicable>"))
return (mount, mountgrid)