From a319ee88b0505b094445cdb1491afb61f766caf4 Mon Sep 17 00:00:00 2001 From: realraum Date: Sat, 7 Aug 2010 10:57:35 +0000 Subject: [PATCH] --bug --- play-sound-status.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/play-sound-status.py b/play-sound-status.py index 752a2ea..ca49586 100755 --- a/play-sound-status.py +++ b/play-sound-status.py @@ -336,13 +336,13 @@ while True: m = RE_BUTTON.match(line) if not m is None: - playThemeOf(user="PANIC") - continue + playThemeOf(user="PANIC", fallback_default="nothing") + continue m = RE_ERROR.match(line) if not m is None: - playThemeOf(user="ERROR") - continue + playThemeOf(user="ERROR", fallback_default="nothing") + continue except Exception, ex: logging.error("main: "+str(ex)) -- 1.7.10.4