From 86f16a61038ddf68f5dcc8dd438253972da3cd79 Mon Sep 17 00:00:00 2001 From: talksik Date: Thu, 27 Apr 2023 16:47:17 -0700 Subject: [PATCH] flipping quotes --- basic_text_to_speech/talk.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basic_text_to_speech/talk.py b/basic_text_to_speech/talk.py index f8712bb..0aaccd8 100644 --- a/basic_text_to_speech/talk.py +++ b/basic_text_to_speech/talk.py @@ -4,7 +4,7 @@ import os def robot(text): - os.system("espeak --stdin '" + text + "' | aplay -D plughw:2,0 ") + os.system('espeak --stdin "' + text + '" | aplay -D plughw:2,0 ') if __name__ == '__main__':