summaryrefslogtreecommitdiffstats
path: root/iw
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2009-07-15 14:59:03 -0400
committerChris Lumens <clumens@redhat.com>2009-07-29 15:25:32 -0400
commitb61c399f446a7f085a10916781a1de61a363e108 (patch)
tree68268f1171bc32e2158a5128483c90661f1ffe81 /iw
parent86a8d4ce4fa20e43afcc3127efc7c7d89541c973 (diff)
downloadanaconda-b61c399f446a7f085a10916781a1de61a363e108.tar.gz
anaconda-b61c399f446a7f085a10916781a1de61a363e108.tar.xz
anaconda-b61c399f446a7f085a10916781a1de61a363e108.zip
Most windows no longer need an anaconda argument, since the intf has that.
Diffstat (limited to 'iw')
-rw-r--r--iw/task_gui.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/iw/task_gui.py b/iw/task_gui.py
index a91209af3..9dd044d14 100644
--- a/iw/task_gui.py
+++ b/iw/task_gui.py
@@ -488,7 +488,7 @@ class TaskWindow(InstallWindow):
return
if repo.needsNetwork() and not network.hasActiveNetDev():
- if not self.anaconda.intf.enableNetwork(self.anaconda):
+ if not self.anaconda.intf.enableNetwork():
return gtk.RESPONSE_CANCEL
dialog = RepoEditor(self.anaconda, repo)
@@ -504,7 +504,7 @@ class TaskWindow(InstallWindow):
return gtk.RESPONSE_CANCEL
if dialog.repo.needsNetwork() and not network.hasActiveNetDev():
- if not self.anaconda.intf.enableNetwork(self.anaconda):
+ if not self.anaconda.intf.enableNetwork():
return gtk.RESPONSE_CANCEL
s = self.xml.get_widget("repoList").get_model()
@@ -536,7 +536,7 @@ class TaskWindow(InstallWindow):
if not wasChecked:
if repo.needsNetwork() and not network.hasActiveNetDev():
- if not self.anaconda.intf.enableNetwork(self.anaconda):
+ if not self.anaconda.intf.enableNetwork():
return
repo.enable()