summaryrefslogtreecommitdiffstats
path: root/yuminstall.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2009-03-04 09:49:40 -0500
committerChris Lumens <clumens@redhat.com>2009-03-04 15:33:27 -0500
commita87612a0deddc4fc160b13175e5c68f7717201da (patch)
tree5a47f3b17843ada9e88feed66e5aca8bfd88b50a /yuminstall.py
parent955380542f3c205c7edcb62731f69ec73be1b8a1 (diff)
downloadanaconda-a87612a0deddc4fc160b13175e5c68f7717201da.tar.gz
anaconda-a87612a0deddc4fc160b13175e5c68f7717201da.tar.xz
anaconda-a87612a0deddc4fc160b13175e5c68f7717201da.zip
protectedPartitions is a list, not a function.
Diffstat (limited to 'yuminstall.py')
-rw-r--r--yuminstall.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yuminstall.py b/yuminstall.py
index d5efee07f..eb69e2bfc 100644
--- a/yuminstall.py
+++ b/yuminstall.py
@@ -1434,7 +1434,7 @@ reposdir=/etc/anaconda.repos.d,/tmp/updates/anaconda.repos.d,/tmp/product/anacon
# If there are any protected partitions we want to mount, create their
# mount points now.
- protected = anaconda.id.storage.protectedPartitions()
+ protected = anaconda.id.storage.protectedPartitions
if protected:
for protectedDev in protected:
request = anaconda.id.storage.devicetree.getDeviceByName(protectedDev)