Skip to content

Commit

Permalink
Merge pull request #488 from edouardpoitras/dev/487
Browse files Browse the repository at this point in the history
Fix for Issue #487 Local mic output inconsistent with standard mic output
  • Loading branch information
Holzhaus committed Apr 11, 2016
2 parents b6b7a6e + 90322fa commit ea24401
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jasper/local_mic.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ def wait_for_keyword(self, keyword="JASPER"):
def active_listen(self, timeout=3):
input = raw_input("YOU: ")
self.prev = input
return input
return [input]

def listen(self):
return [self.active_listen(timeout=3)]
return self.active_listen(timeout=3)

def say(self, phrase, OPTIONS=None):
print("JASPER: %s" % phrase)

0 comments on commit ea24401

Please sign in to comment.