summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2009-03-04 14:38:06 -0500
committerChris Lumens <clumens@redhat.com>2009-03-04 15:33:27 -0500
commitf6ccb426af374f745efe53cfbb1df1175e550de7 (patch)
tree5fcfee6326fac36cc551a5bba1fceb26af67a88c
parentf780409e2eb333365b38736037cf8958c0e7c430 (diff)
downloadanaconda-f6ccb426af374f745efe53cfbb1df1175e550de7.tar.gz
anaconda-f6ccb426af374f745efe53cfbb1df1175e550de7.tar.xz
anaconda-f6ccb426af374f745efe53cfbb1df1175e550de7.zip
Fix grabbing the rootDevice in doMethodComplete.
-rw-r--r--installmethod.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/installmethod.py b/installmethod.py
index d62201583..f2c3d7191 100644
--- a/installmethod.py
+++ b/installmethod.py
@@ -47,7 +47,7 @@ def doMethodComplete(anaconda):
isys.ejectCdrom(dev)
mtab = "/dev/root / ext3 ro 0 0\n"
- rootDevice = anaconda.id.storage.rootDevice
+ rootDevice = anaconda.id.storage.fsset.rootDevice
if rootDevice:
mtab = "/dev/root / %s ro 0 0\n" % rootDevice.format.type