diff options
author | Mike Fulbright <msf@redhat.com> | 2000-05-31 20:00:34 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2000-05-31 20:00:34 +0000 |
commit | ab1ce066e0a1fe9b82da94cb5eee4ba90f0209dc (patch) | |
tree | 7b1bf87c856018eaf141e2d5277e9a7e2021716f /fstab.py | |
parent | 88ca37d97105f66c3f95713e56ec64a81977bed8 (diff) | |
download | anaconda-ab1ce066e0a1fe9b82da94cb5eee4ba90f0209dc.tar.gz anaconda-ab1ce066e0a1fe9b82da94cb5eee4ba90f0209dc.tar.xz anaconda-ab1ce066e0a1fe9b82da94cb5eee4ba90f0209dc.zip |
fix stupid exposure of internal data
Diffstat (limited to 'fstab.py')
-rw-r--r-- | fstab.py | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -251,6 +251,12 @@ class Fstab: def partitionList(self): return self.ddruid.partitionList() + def getprotectedList(self): + if self.protectList: + return self.protectList + else: + return [] + def driveList(self): drives = isys.hardDriveDict().keys() drives.sort (isys.compareDrives) |