From: Bernhard Tittelbach Date: Fri, 30 Jul 2010 03:25:17 +0000 (+0000) Subject: --bug X-Git-Url: https://git.realraum.at/?p=svn42.git;a=commitdiff_plain;h=46f858e82f5bca8cabf43b9e9908aa944aab2a2c --bug --- diff --git a/play-sound-status.py b/play-sound-status.py index 2e6b34c..51edf69 100755 --- a/play-sound-status.py +++ b/play-sound-status.py @@ -185,7 +185,7 @@ def executeAction(action_name, user, args=[]): logging.error("executeAction: action %s not found or has no type" % action_name) return False action_delay=uwscfg.getValue(action_name+"_delay") - logging.debug("executeAction, user=%s, action_name=%s, action_type=%s, action_delay=%s" % (user,config,action_type,action_delay)) + logging.debug("executeAction, user=%s, action_name=%s, action_type=%s, action_delay=%s" % (user,action_name,action_type,action_delay)) if not action_delay is None: time.sleep(float(action_delay)) @@ -193,17 +193,17 @@ def executeAction(action_name, user, args=[]): if not action_arg is None: args += [action_arg] + #"registered" actions if action_type == "remotecmd": - return runRemoteCommand(config,args) + return runRemoteCommand(action_type,args) elif action_type == "shellcmd": - return runShellCommand(config,args) + return runShellCommand(action_type,args) else: return executeAction(action_type,args) def playThemeOf(user): global uwscfg uwscfg.checkConfigUpdates() - useraction=None config=uwscfg.getValue("mapping_"+str(user)) if config is None: config=uwscfg.getValue("mapping_default")