def run(self):
diff --git a/pyanaconda/installclass.py b/pyanaconda/installclass.py
index 251d882..0819b6b 100644
--- a/pyanaconda/installclass.py
+++ b/pyanaconda/installclass.py
@@ -145,7 +145,7 @@ class BaseInstallClass(object):
# upgrade will also always force looking for an upgrade.
if flags.cmdline.has_key("upgrade"):
- dispatch.request_step("findrootparts")
+ dispatch.request_steps("findrootparts")
# allow interface backends to skip certain steps.
map(lambda s: dispatch.skip_steps(s), anaconda.intf.unsupported_steps())
diff --git a/pyanaconda/iw/autopart_type.py b/pyanaconda/iw/autopart_type.py
index 5408949..8a305c3 100644
--- a/pyanaconda/iw/autopart_type.py
+++ b/pyanaconda/iw/autopart_type.py
@@ -162,8 +162,8 @@ class PartitionTypeWindow(InstallWindow):
if self.buttonGroup.getCurrent() == "custom":
self.dispatch.skip_steps("autopartitionexecute")
self.dispatch.skip_steps("cleardiskssel")
- self.dispatch.request_step("partition")
- self.dispatch.request_step("bootloader")
+ self.dispatch.request_steps("partition")
+ self.dispatch.request_steps("bootloader")
if anaconda.rootParts is not None and len(anaconda.rootParts) > 0:
- anaconda.dispatch.request_step("findinstall")
+ anaconda.dispatch.request_steps("findinstall")
else:
anaconda.dispatch.skip_steps("findinstall")
@@ -118,7 +118,7 @@ def upgradeMigrateFind(anaconda):
if not migents or len(migents) < 1:
anaconda.dispatch.skip_steps("upgrademigratefs")
else:
- anaconda.dispatch.request_step("upgrademigratefs")
+ anaconda.dispatch.request_steps("upgrademigratefs" )
def copyFromSysimage(rootPath, filename):
"""Mirrors filename from the sysimage on the ramdisk."""
--
1.7.3.3
_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@redhat.com
https://www.redhat.com/mailman/listinfo/anaconda-devel-list
05-17-2011, 01:01 PM
Chris Lumens
cosmetic: dispatch.request_step is dispatch.request_steps.