From 50057bec57447247846d615865fe225ffc814771 Mon Sep 17 00:00:00 2001 From: schneefux Date: Sat, 26 Jul 2014 16:44:12 -0700 Subject: Cleanup before pull request. --- client/stt.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/client/stt.py b/client/stt.py index 5da0889..3b3b81d 100644 --- a/client/stt.py +++ b/client/stt.py @@ -124,6 +124,10 @@ class GoogleSTT(object): decoded = json.loads(response_read.split("\n")[1]) print response_read text = decoded['result'][0]['alternative'][0]['transcript'] + if text: + print "===================" + print "JASPER: " + text + print "===================" return text except Exception: traceback.print_exc() -- cgit v1.3.1