From eacf0a0ab2311688ffefbbb4ef4845902937acf4 Mon Sep 17 00:00:00 2001 From: Papoteur Date: Thu, 10 Dec 2015 21:51:55 +0100 Subject: Change variables names --- usr/share/mageiawelcome/webgui.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'usr') 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): -- cgit v1.2.1