summaryrefslogtreecommitdiff
path: root/client/local_mic.py
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2014-12-04 16:56:49 +0100
committerschneefux <schneefux+commit@schneefux.xyz>2014-12-04 17:20:53 +0100
commit87bdc5e4b5a788547764e1c222008a6c7c54232a (patch)
tree38d7d24f8f52b41ea3017f3e05edda62a210fb18 /client/local_mic.py
parent68e5c979ad6f643af23a8c1e5895c8bb38527328 (diff)
downloadjasper-client-87bdc5e4b5a788547764e1c222008a6c7c54232a.tar.gz
jasper-client-87bdc5e4b5a788547764e1c222008a6c7c54232a.zip
Use Python-3-style print function to match coding style
This also makes a possible transition to Python 3.x easier
Diffstat (limited to 'client/local_mic.py')
-rw-r--r--client/local_mic.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/local_mic.py b/client/local_mic.py
index a58370d..5c0fed2 100644
--- a/client/local_mic.py
+++ b/client/local_mic.py
@@ -29,4 +29,4 @@ class Mic:
return input
def say(self, phrase, OPTIONS=None):
- print "JASPER: " + phrase
+ print("JASPER: %s" % phrase)