aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwiktor w brodlo <wiktor@brodlo.net>2011-07-21 13:04:31 +0000
committerwiktor w brodlo <wiktor@brodlo.net>2011-07-21 13:04:31 +0000
commit4487f962afc13420060d55501819d5f3baee5fd4 (patch)
tree6bacdb093ed3b7231988c2451ec5e90bd9789283
parentMove the welcome windows hooks from packages.py to dispatch.py (diff)
downloadanaconda-4487f962afc13420060d55501819d5f3baee5fd4.tar.gz
anaconda-4487f962afc13420060d55501819d5f3baee5fd4.tar.bz2
anaconda-4487f962afc13420060d55501819d5f3baee5fd4.zip
dispatch.py: iw modules require two arguments to their constructor
-rw-r--r--dispatch.py18
1 files changed, 9 insertions, 9 deletions
diff --git a/dispatch.py b/dispatch.py
index 666a744..c3ff6a1 100644
--- a/dispatch.py
+++ b/dispatch.py
@@ -69,13 +69,13 @@ log = logging.getLogger("anaconda")
# gets passed in when we call the function.
installSteps = [
# Welcome
- ("welcome", WelcomeWindow().welcome, ),
+ ("welcome", WelcomeWindow(None).welcome, ),
("language", ),
("keyboard", ),
("betanag", betaNagScreen, ),
# Preparing the Disks
- ("preparedisks", WelcomeWindow().preparedisks, ),
+ ("preparedisks", WelcomeWindow(None).preparedisks, ),
("filtertype", ),
("filter", ),
("storageinit", storageInitialize, ),
@@ -96,38 +96,38 @@ installSteps = [
("enablefilesystems", turnOnFilesystems, ),
# Installing the Gentoo Installation Files
- ("installationfiles", WelcomeWindow().installationfiles, ),
+ ("installationfiles", WelcomeWindow(None).installationfiles, ),
("makeconf", ),
# Installing the Gentoo Base System
- ("basesystem", WelcomeWindow().basesystem, ),
+ ("basesystem", WelcomeWindow(None).basesystem, ),
("mirrorselect", ),
("mirrorselect-sync", ),
("profile", ),
("use", ),
# Configuring the Kernel
- ("configurekernel", WelcomeWindow().configurekernel, ),
+ ("configurekernel", WelcomeWindow(None).configurekernel, ),
("timezone", ),
("setuptime", setupTimezone, ),
# Configuring your System
- ("configuresystem", WelcomeWindow().configuresystem, ),
+ ("configuresystem", WelcomeWindow(None).configuresystem, ),
("network", ),
("accounts", ),
# Installing Necessary System Tools
- ("systoolswelcome", WelcomeWindow().systools, ),
+ ("systoolswelcome", WelcomeWindow(None).systools, ),
("systools", ),
# Configuring the Bootloader
- ("bootloaderwelcome", WelcomeWindow().bootloader, ),
+ ("bootloaderwelcome", WelcomeWindow(None).bootloader, ),
("upgbootloader", ),
("bootloadersetup", bootloaderSetupChoices, ),
("bootloader", ),
# Finalizing your Gentoo Installation
- ("finalizing", WelcomeWindow().finalizing, ),
+ ("finalizing", WelcomeWindow(None).finalizing, ),
("useraccounts", ),
("xorg", ),