diff options
author | Joel Andres Granados <jgranado@redhat.com> | 2008-03-07 18:11:38 +0100 |
---|---|---|
committer | Joel Andres Granados <jgranado@redhat.com> | 2008-03-07 18:11:38 +0100 |
commit | 79cc59b4390aa23bc5632c967cfd0530217b407e (patch) | |
tree | eae0d0d74d095d4f50119ccebbff86c74062235e | |
parent | 098e61b70d5bf76694809a87fb8df1ef22fb7093 (diff) | |
download | firstaidkit-79cc59b4390aa23bc5632c967cfd0530217b407e.tar.gz firstaidkit-79cc59b4390aa23bc5632c967cfd0530217b407e.tar.xz firstaidkit-79cc59b4390aa23bc5632c967cfd0530217b407e.zip |
Call a method that actually exists
-rw-r--r-- | plugins/plugin_undelete_partitions/undeletePartition.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/plugin_undelete_partitions/undeletePartition.py b/plugins/plugin_undelete_partitions/undeletePartition.py index 6f817f0..abe5271 100644 --- a/plugins/plugin_undelete_partitions/undeletePartition.py +++ b/plugins/plugin_undelete_partitions/undeletePartition.py @@ -70,7 +70,7 @@ class UndeletePartition(Plugin): # When we find a rescuable partition we change this to true. rescuablePresent = False for key, value in self.disks.iteritems(): - self.disks[key] = [ _undelpart.getRescuable(key), _undelpart.getPartitionTable(key), [] ] + self.disks[key] = [ _undelpart.getRescuable(key), _undelpart.getPartitionList(key), [] ] if len(self.disks[key][0]) > 0: self._reporting.info("Possible partitions to recover: %s"%self.disks[key], origin = self, level = PLUGIN) |