summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian C. Lane <bcl@redhat.com>2011-03-01 09:18:52 -0800
committerBrian C. Lane <bcl@redhat.com>2011-03-01 09:18:52 -0800
commit8a5c7ad03cd34990aa0c6c30258a368fef753b37 (patch)
tree37d85a24026d4d45e0f9bd47f1ba64f0196bdf64
parent4b16c4f7bf92f01d6a71f5664bef76c77f502fef (diff)
downloadanaconda-8a5c7ad03cd34990aa0c6c30258a368fef753b37.tar.gz
anaconda-8a5c7ad03cd34990aa0c6c30258a368fef753b37.tar.xz
anaconda-8a5c7ad03cd34990aa0c6c30258a368fef753b37.zip
Change upgrade to use findExistingRootDevices (#681267)
Commit 88365ee removed findExistingRoots, it was just a wrapper to findExistingRootDevices
-rw-r--r--pyanaconda/iw/examine_gui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyanaconda/iw/examine_gui.py b/pyanaconda/iw/examine_gui.py
index 99d3d184c..eadbf0d0f 100644
--- a/pyanaconda/iw/examine_gui.py
+++ b/pyanaconda/iw/examine_gui.py
@@ -98,7 +98,7 @@ class UpgradeExamineWindow (InstallWindow):
# we might get here after storage reset that obsoleted
# root device objects we had found
if not self.anaconda.rootParts:
- (self.anaconda.rootParts, notUpgradable) = upgrade.findExistingRoots(self.anaconda,
+ (self.anaconda.rootParts, notUpgradable) = upgrade.findExistingRootDevices(self.anaconda,
flags.cmdline.has_key("upgradeany"))
upgrade.setUpgradeRoot(self.anaconda)