public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Wiktor W Brodlo" <wiktor@brodlo.net>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/anaconda:master commit in: /
Date: Thu, 21 Jul 2011 13:04:55 +0000 (UTC)	[thread overview]
Message-ID: <4487f962afc13420060d55501819d5f3baee5fd4.wiktor@gentoo> (raw)

commit:     4487f962afc13420060d55501819d5f3baee5fd4
Author:     wiktor w brodlo <wiktor <AT> brodlo <DOT> net>
AuthorDate: Thu Jul 21 13:04:31 2011 +0000
Commit:     Wiktor W Brodlo <wiktor <AT> brodlo <DOT> net>
CommitDate: Thu Jul 21 13:04:31 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/anaconda.git;a=commit;h=4487f962

dispatch.py: iw modules require two arguments to their constructor

---
 dispatch.py |   18 +++++++++---------
 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", ),
 



             reply	other threads:[~2011-07-21 13:05 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-07-21 13:04 Wiktor W Brodlo [this message]
  -- strict thread matches above, loose matches on Subject: below --
2011-07-22 21:28 [gentoo-commits] proj/anaconda:master commit in: / Wiktor W Brodlo
2011-07-22 20:33 Wiktor W Brodlo
2011-07-22 19:49 Wiktor W Brodlo
2011-07-22 19:39 Wiktor W Brodlo
2011-07-22 19:16 Wiktor W Brodlo
2011-07-21 20:49 Wiktor W Brodlo
2011-07-21 14:19 Wiktor W Brodlo
2011-07-21 14:03 Wiktor W Brodlo
2011-07-21 13:42 Wiktor W Brodlo
2011-07-21 12:56 Wiktor W Brodlo
2011-07-21 12:31 Wiktor W Brodlo
2011-07-21 12:26 Wiktor W Brodlo
2011-07-09 16:58 Wiktor W Brodlo
2011-07-03 23:44 Wiktor W Brodlo
2011-07-03 16:33 Wiktor W Brodlo
2011-07-03 16:27 Wiktor W Brodlo
2011-07-03 16:21 Wiktor W Brodlo
2011-07-03 16:08 Wiktor W Brodlo
2011-07-03 15:54 Wiktor W Brodlo
2011-07-01  1:48 Wiktor W Brodlo
2011-06-30 22:53 Wiktor W Brodlo
2011-06-30 22:29 Wiktor W Brodlo
2011-06-30 22:12 Wiktor W Brodlo
2011-06-30 18:47 Wiktor W Brodlo
2011-06-26 19:05 Wiktor W Brodlo
2011-06-21 12:27 Wiktor W Brodlo
2011-06-20 21:22 Wiktor W Brodlo

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4487f962afc13420060d55501819d5f3baee5fd4.wiktor@gentoo \
    --to=wiktor@brodlo.net \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox