From d02bd91f41e0c4a8e868d9f0a597b3a989f1d9ff Mon Sep 17 00:00:00 2001 From: Bill Dengler Date: Thu, 14 May 2015 10:03:38 -0400 Subject: [PATCH] Fix error in sound declaration. --- src/twitter/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/twitter/utils.py b/src/twitter/utils.py index f8199764..08e2a22f 100644 --- a/src/twitter/utils.py +++ b/src/twitter/utils.py @@ -120,7 +120,7 @@ def api_call(parent=None, call_name=None, preexec_message="", success="", succes parent.parent.sound.play(success_snd) except TwythonError as e: output.speak("Error %s: %s" % (e.error_code, e.msg), True) - parent.parent.sound.play("error.wav") + parent.parent.sound.play("error") return val def is_allowed(tweet, clients):