From 88365eeaed4fe6047fff950cbb30d75480d250cf Mon Sep 17 00:00:00 2001 From: David Lehman Date: Sat, 29 Jan 2011 11:48:31 -0700 Subject: Remove upgrade.findExistingRoots since it does nothing. It just passes its arguments directly to storage.findExistingRootDevices. --- pyanaconda/rescue.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pyanaconda/rescue.py') diff --git a/pyanaconda/rescue.py b/pyanaconda/rescue.py index 24305a5bb..e7077e956 100644 --- a/pyanaconda/rescue.py +++ b/pyanaconda/rescue.py @@ -319,7 +319,7 @@ def runRescue(anaconda): import storage storage.storageInitialize(anaconda) - (disks, notUpgradable) = upgrade.findExistingRoots(anaconda, upgradeany=True) + (disks, notUpgradable) = storage.findExistingRootDevices(anaconda, upgradeany=True) if not disks: root = None -- cgit