summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--dispatch.py2
-rw-r--r--iw/network_gui.py2
-rw-r--r--textw/network_text.py6
3 files changed, 5 insertions, 5 deletions
diff --git a/dispatch.py b/dispatch.py
index ddb107b9a..3bc273957 100644
--- a/dispatch.py
+++ b/dispatch.py
@@ -92,7 +92,7 @@ installSteps = [
("bootloaderadvanced", ("dispatch", "id.bootloader", "id.fsset",
"id.diskset")),
("networkdevicecheck", networkDeviceCheck, ("id.network", "dispatch")),
- ("network", ("id.network", "dispatch", "intf")),
+ ("network", ("id.network", "dir", "intf")),
("firewall", ("intf", "id.network", "id.firewall")),
("languagesupport", ("id.langSupport",)),
("timezone", ("id.instLanguage", "id.timezone")),
diff --git a/iw/network_gui.py b/iw/network_gui.py
index ce350305d..678a23506 100644
--- a/iw/network_gui.py
+++ b/iw/network_gui.py
@@ -455,7 +455,7 @@ class NetworkWindow(InstallWindow):
self.hostnameEntry.grab_focus()
# NetworkWindow tag="netconf"
- def getScreen(self, network, dispatch, intf):
+ def getScreen(self, network, dir, intf):
self.intf = intf
box = gtk.VBox(gtk.FALSE)
box.set_border_width(5)
diff --git a/textw/network_text.py b/textw/network_text.py
index bfceaca67..b9305475a 100644
--- a/textw/network_text.py
+++ b/textw/network_text.py
@@ -174,7 +174,7 @@ class NetworkWindow:
return INSTALL_BACK
return INSTALL_OK
- def __call__(self, screen, network, dispatch, intf):
+ def __call__(self, screen, network, dir, intf):
devices = network.available ()
if not devices:
@@ -183,7 +183,7 @@ class NetworkWindow:
list = devices.keys ()
list.sort()
devLen = len(list)
- if dispatch.dir == 1:
+ if dir == 1:
currentDev = 0
else:
currentDev = devLen - 1
@@ -201,7 +201,7 @@ class NetworkWindow:
return INSTALL_OK
class HostnameWindow:
- def __call__(self, screen, network, dispatch, intf):
+ def __call__(self, screen, network, dir, intf):
devices = network.available ()
if not devices:
return INSTALL_NOOP