From 9c1f76b042052073b8a6301d91c83127be3ed710 Mon Sep 17 00:00:00 2001 From: Dan Williams Date: Sun, 12 Nov 2006 19:21:13 -0500 Subject: [PATCH] Fix returned dbus args so the applet works with WEP --- services/nm/nminfo.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/services/nm/nminfo.py b/services/nm/nminfo.py index 9aff0756..592fa398 100644 --- a/services/nm/nminfo.py +++ b/services/nm/nminfo.py @@ -424,7 +424,8 @@ class NMInfo(object): # and return it to NetworkManager sec = Security.new_from_args(we_cipher, key, auth_alg) props = sec.get_properties() - async_cb(tuple(props)) + a = tuple(props) + async_cb(*a) def cancel_get_key_for_network(self): # Tell the NMClient to close the key request dialog