Skip to content

Commit ea24401

Browse files
committed
Merge pull request #488 from edouardpoitras/dev/487
Fix for Issue #487 Local mic output inconsistent with standard mic output
2 parents b6b7a6e + 90322fa commit ea24401

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

jasper/local_mic.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ def wait_for_keyword(self, keyword="JASPER"):
1818
def active_listen(self, timeout=3):
1919
input = raw_input("YOU: ")
2020
self.prev = input
21-
return input
21+
return [input]
2222

2323
def listen(self):
24-
return [self.active_listen(timeout=3)]
24+
return self.active_listen(timeout=3)
2525

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

0 commit comments

Comments
 (0)