summaryrefslogtreecommitdiffstats
path: root/pyanaconda/installclass.py
diff options
context:
space:
mode:
authorAles Kozumplik <akozumpl@redhat.com>2011-05-09 18:18:36 +0200
committerAles Kozumplik <akozumpl@redhat.com>2011-05-19 13:40:35 +0200
commitd5aa405f018f1346e303f89e0fc8b3b661d65869 (patch)
tree722d1b94cebbb2eeac6ad39516423ae6539876a4 /pyanaconda/installclass.py
parent310c30179fabdecf00bb899d2dd04d0101b2cb5b (diff)
downloadanaconda-d5aa405f018f1346e303f89e0fc8b3b661d65869.tar.gz
anaconda-d5aa405f018f1346e303f89e0fc8b3b661d65869.tar.xz
anaconda-d5aa405f018f1346e303f89e0fc8b3b661d65869.zip
cosmetic: dispatch.skipStep is dispatch.skip_steps
Follow the same convention as the other dispatcher methods.
Diffstat (limited to 'pyanaconda/installclass.py')
-rw-r--r--pyanaconda/installclass.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/pyanaconda/installclass.py b/pyanaconda/installclass.py
index 508f3b350..251d88210 100644
--- a/pyanaconda/installclass.py
+++ b/pyanaconda/installclass.py
@@ -124,31 +124,31 @@ class BaseInstallClass(object):
)
if not isBeta:
- dispatch.skipStep("betanag")
+ dispatch.skip_steps("betanag")
if iutil.isEfi() or not iutil.isX86():
- dispatch.skipStep("bootloader")
+ dispatch.skip_steps("bootloader")
# allow backends to disable interactive package selection
if not anaconda.backend.supportsPackageSelection:
- dispatch.skipStep("tasksel")
- dispatch.skipStep("group-selection")
+ dispatch.skip_steps("tasksel")
+ dispatch.skip_steps("group-selection")
# allow install classes to turn off the upgrade
if not self.showUpgrade or not anaconda.backend.supportsUpgrades:
- dispatch.skipStep("findrootparts")
+ dispatch.skip_steps("findrootparts")
# 'noupgrade' can be used on the command line to force not looking
# for partitions to upgrade. useful in some cases...
if flags.cmdline.has_key("noupgrade"):
- dispatch.skipStep("findrootparts")
+ dispatch.skip_steps("findrootparts")
# upgrade will also always force looking for an upgrade.
if flags.cmdline.has_key("upgrade"):
dispatch.request_step("findrootparts")
# allow interface backends to skip certain steps.
- map(lambda s: dispatch.skipStep(s), anaconda.intf.unsupported_steps())
+ map(lambda s: dispatch.skip_steps(s), anaconda.intf.unsupported_steps())
# modifies the uri from installmethod.getMethodUri() to take into
# account any installclass specific things including multiple base