summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Lehman <dlehman@redhat.com>2011-02-28 13:03:01 -0600
committerDavid Lehman <dlehman@redhat.com>2011-02-28 15:47:50 -0600
commita3619ab1834ebb2ac0322790f7610663450b71b4 (patch)
treef57360c74b0e9774dfa8b7ed5b4f250fb5827428
parent3f316bc096f19ed99750d91b8c6e4351b401a079 (diff)
downloadanaconda-a3619ab1834ebb2ac0322790f7610663450b71b4.tar.gz
anaconda-a3619ab1834ebb2ac0322790f7610663450b71b4.tar.xz
anaconda-a3619ab1834ebb2ac0322790f7610663450b71b4.zip
Pass correct class to super in SELinuxFS.mountable. (#677450)
-rw-r--r--pyanaconda/storage/formats/fs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyanaconda/storage/formats/fs.py b/pyanaconda/storage/formats/fs.py
index 95f8770c5..5b1b81405 100644
--- a/pyanaconda/storage/formats/fs.py
+++ b/pyanaconda/storage/formats/fs.py
@@ -1497,7 +1497,7 @@ class SELinuxFS(NoDevFS):
@property
def mountable(self):
- return flags.selinux and super(FS, self).mountable
+ return flags.selinux and super(SELinuxFS, self).mountable
register_device_format(SELinuxFS)