summaryrefslogtreecommitdiffstats
path: root/pyanaconda/installclass.py
diff options
context:
space:
mode:
authorAles Kozumplik <akozumpl@redhat.com>2011-05-10 10:52:29 +0200
committerAles Kozumplik <akozumpl@redhat.com>2011-05-19 13:40:35 +0200
commit5ff2e8ad25998fdec3a5643f89cc4b74855786b5 (patch)
tree245b8200c3e552cc0f1a7d612e92b1a3153e3106 /pyanaconda/installclass.py
parentd5aa405f018f1346e303f89e0fc8b3b661d65869 (diff)
downloadanaconda-5ff2e8ad25998fdec3a5643f89cc4b74855786b5.tar.gz
anaconda-5ff2e8ad25998fdec3a5643f89cc4b74855786b5.tar.xz
anaconda-5ff2e8ad25998fdec3a5643f89cc4b74855786b5.zip
cosmetic: dispatch.request_step is dispatch.request_steps.
Follow the same convention as the other dispatcher methods.
Diffstat (limited to 'pyanaconda/installclass.py')
-rw-r--r--pyanaconda/installclass.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyanaconda/installclass.py b/pyanaconda/installclass.py
index 251d88210..0819b6b9d 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())