summaryrefslogtreecommitdiffstats
path: root/pyanaconda/ui/gui/spokes/network.py
diff options
context:
space:
mode:
authorRadek Vykydal <rvykydal@redhat.com>2012-10-19 10:40:26 +0200
committerRadek Vykydal <rvykydal@redhat.com>2012-10-29 12:30:14 +0100
commitb0f4731e911639ace5077078f38771f0b53b9da6 (patch)
treee359812b8966ed46315508aa3a2cbd5bd1eb72c0 /pyanaconda/ui/gui/spokes/network.py
parente6c5711170bb14f39f227dfd7926843a985f2f54 (diff)
downloadanaconda-b0f4731e911639ace5077078f38771f0b53b9da6.tar.gz
anaconda-b0f4731e911639ace5077078f38771f0b53b9da6.tar.xz
anaconda-b0f4731e911639ace5077078f38771f0b53b9da6.zip
Network spoke: fix callback arguments for device add/remove.
Diffstat (limited to 'pyanaconda/ui/gui/spokes/network.py')
-rw-r--r--pyanaconda/ui/gui/spokes/network.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyanaconda/ui/gui/spokes/network.py b/pyanaconda/ui/gui/spokes/network.py
index 21a9eaee5..26cf3e736 100644
--- a/pyanaconda/ui/gui/spokes/network.py
+++ b/pyanaconda/ui/gui/spokes/network.py
@@ -405,10 +405,10 @@ class NetworkControlBox():
self.client.add_and_activate_connection(None, device, ap_obj_path,
None, None)
- def on_device_added(self, device):
+ def on_device_added(self, device, *args):
self.add_device(device)
- def on_device_removed(self, device):
+ def on_device_removed(self, device, *args):
self.remove_device(device)
def on_edit_connection(self, *args):