From 870aa155a773239bdeaadf5a9b20819fafaf8cad Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Tue, 2 Mar 2021 14:34:40 +0000 Subject: [PATCH] Add quotes --- epicyon.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/epicyon.py b/epicyon.py index 7b568fbac..c94cda504 100644 --- a/epicyon.py +++ b/epicyon.py @@ -1972,7 +1972,8 @@ if args.speaker: if args.screenreader == 'espeak': espeak.synth(html.unescape(sayStr)) elif args.screenreader == 'picospeaker': - os.system('picospeaker ' + html.unescape(sayStr)) + os.system('picospeaker "' + + html.unescape(sayStr) + '"') prevSay = speakerJson['say'] time.sleep(30)