summaryrefslogtreecommitdiffstats
path: root/usr
diff options
context:
space:
mode:
Diffstat (limited to 'usr')
-rw-r--r--usr/share/mageiawelcome/webgui.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/usr/share/mageiawelcome/webgui.py b/usr/share/mageiawelcome/webgui.py
index 57b4624..41bacad 100644
--- a/usr/share/mageiawelcome/webgui.py
+++ b/usr/share/mageiawelcome/webgui.py
@@ -47,8 +47,8 @@ if use is UseWebKit:
def asynchronous_gtk_message(fun):
- def worker(xxx_todo_changeme):
- (function, args, kwargs) = xxx_todo_changeme
+ def worker(wargs):
+ (function, args, kwargs) = wargs
function(*args, **kwargs)
def fun2(*args, **kwargs):
@@ -61,8 +61,8 @@ def synchronous_gtk_message(fun):
class NoResult: pass
- def worker(xxx_todo_changeme1):
- (R, function, args, kwargs) = xxx_todo_changeme1
+ def worker(wargs):
+ (R, function, args, kwargs) = wargs
R.result = function(*args, **kwargs)
def fun2(*args, **kwargs):