summaryrefslogtreecommitdiffstats
path: root/textw/upgrade_text.py
diff options
context:
space:
mode:
Diffstat (limited to 'textw/upgrade_text.py')
-rw-r--r--textw/upgrade_text.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/textw/upgrade_text.py b/textw/upgrade_text.py
index a7435388d..6d7bfe72e 100644
--- a/textw/upgrade_text.py
+++ b/textw/upgrade_text.py
@@ -37,7 +37,7 @@ seenExamineScreen = False
class UpgradeMigrateFSWindow:
def __call__ (self, screen, anaconda):
- migent = anaconda.id.storage.migratableDevices
+ migent = anaconda.storage.migratableDevices
g = GridFormHelp(screen, _("Migrate File Systems"), "upmigfs", 1, 4)
@@ -93,7 +93,7 @@ class UpgradeMigrateFSWindow:
except Exception, e:
log.info("failed to get new filesystem type, defaulting to ext3: %s" %(e,))
newfs = getFormat("ext3")
- anaconda.id.storage.migrateFormat(entry, newfs)
+ anaconda.storage.migrateFormat(entry, newfs)
screen.popWindow()
return INSTALL_OK
@@ -195,7 +195,7 @@ class UpgradeSwapWindow:
"and 2000 MB in size."))
else:
screen.popWindow()
- anaconda.id.storage.createSwapFile(dev, val)
+ anaconda.storage.createSwapFile(dev, val)
anaconda.dispatch.skipStep("addswap", 1)
return INSTALL_OK