summaryrefslogtreecommitdiffstats
path: root/storage/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'storage/__init__.py')
-rw-r--r--storage/__init__.py2
1 files changed, 1 insertions, 1 deletions
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"