summaryrefslogtreecommitdiffstats
path: root/iw
diff options
context:
space:
mode:
authorRadek Vykydal <rvykydal@redhat.com>2009-03-18 11:48:26 +0100
committerRadek Vykydal <rvykydal@redhat.com>2009-03-18 16:39:05 +0100
commit6ec88a43e537960c2759963a3342810d8b1db6c0 (patch)
treeda2dbd65367817db488acd0ca6ab633adbe7126a /iw
parent7d82ba48314aa8be4b161a30334366e6f58bd921 (diff)
downloadanaconda-6ec88a43e537960c2759963a3342810d8b1db6c0.tar.gz
anaconda-6ec88a43e537960c2759963a3342810d8b1db6c0.tar.xz
anaconda-6ec88a43e537960c2759963a3342810d8b1db6c0.zip
Fix getChildren call in partition UI
Diffstat (limited to 'iw')
-rw-r--r--iw/partition_gui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/iw/partition_gui.py b/iw/partition_gui.py
index 668530c81..0b52a70fb 100644
--- a/iw/partition_gui.py
+++ b/iw/partition_gui.py
@@ -737,7 +737,7 @@ class PartitionWindow(InstallWindow):
# look up the mapped/decrypted device since that's
# where we'll find the format we want to display
try:
- dm_dev = self.storage.getChildren(array)[0]
+ dm_dev = self.storage.devicetree.getChildren(array)[0]
except IndexError:
format = array.format
else: