From ff60efad5c439e68c093037ae75619f876255ffe Mon Sep 17 00:00:00 2001 From: Chris Lumens Date: Thu, 17 Dec 2009 23:48:31 -0500 Subject: Move instClass to be an attribute on Anaconda. --- storage/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'storage/__init__.py') diff --git a/storage/__init__.py b/storage/__init__.py index c86345567..0bea0250b 100644 --- a/storage/__init__.py +++ b/storage/__init__.py @@ -1275,7 +1275,7 @@ def findExistingRootDevices(anaconda, upgradeany=False): if os.access(anaconda.rootPath + "/etc/fstab", os.R_OK): (product, version) = getReleaseString(anaconda.rootPath) if upgradeany or \ - anaconda.id.instClass.productUpgradable(product, version): + anaconda.instClass.productUpgradable(product, version): rootDevs.append((device, "%s %s" % (product, version))) else: log.info("product %s version %s found on %s is not upgradable" -- cgit