From cd0be0f6253fc014e547b7a33e728b82f3a4a450 Mon Sep 17 00:00:00 2001 From: Bernhard Tittelbach Date: Fri, 6 Aug 2010 21:24:13 +0000 Subject: [PATCH] error sound --- play-sound-status.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/play-sound-status.py b/play-sound-status.py index 77abfd6..535c449 100755 --- a/play-sound-status.py +++ b/play-sound-status.py @@ -294,7 +294,9 @@ else: #socket.setdefaulttimeout(10.0) #affects all new Socket Connections (urllib as well) RE_PRESENCE = re.compile(r'Presence: (yes|no)(?:, (opened|closed), (.+))?') RE_BUTTON = re.compile(r'PanicButton|button\d?') -RE_REQUEST = re.compile(r'Request: (\w+) (?:(Card|Phone) )?(.+)') +#RE_REQUEST = re.compile(r'Request: (\w+) (?:(Card|Phone) )?(.+)') +RE_ERROR = re.compile(r'Error: (.+)') + while True: try: if not os.path.exists(uwscfg.tracker_socket): @@ -330,6 +332,11 @@ while True: if not m is None: playThemeOf(user="panic") continue + + m = RE_ERROR.match(line) + if not m is None: + playThemeOf(user="error") + continue except Exception, ex: logging.error("main: "+str(ex)) -- 1.7.10.4