From 014981a1ca6cdf61ed30eb276e5fe54da57a3459 Mon Sep 17 00:00:00 2001 From: Twirre Meulenbelt <43213592+TwirreM@users.noreply.github.com> Date: Tue, 12 May 2026 11:14:40 +0200 Subject: [PATCH] fix: fix string formatting for TTS command --- src/robot_interface/endpoints/actuation_receiver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/robot_interface/endpoints/actuation_receiver.py b/src/robot_interface/endpoints/actuation_receiver.py index 68b92c3..7444730 100644 --- a/src/robot_interface/endpoints/actuation_receiver.py +++ b/src/robot_interface/endpoints/actuation_receiver.py @@ -156,7 +156,7 @@ class ActuationReceiver(ReceiverBase): try: text = self._message_queue.get(timeout=0.1) state.is_speaking = True - self._tts_service.say("\VCT={}\{}\RST\".format(settings.robot_config.voice_shaping, text)) + self._tts_service.say("\\VCT={}\\{}\\RST\\".format(settings.robot_config.voice_shaping, text)) except Queue.Empty: state.is_speaking = False except RuntimeError: