From 6f9106d4a88bbf46eec5bdf2bf143af78933ae2c Mon Sep 17 00:00:00 2001 From: chrys Date: Mon, 27 Feb 2017 21:03:58 +0100 Subject: [PATCH] fix syntax problem --- src/fenrir/commands/commands/dec_speech_pitch.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/fenrir/commands/commands/dec_speech_pitch.py b/src/fenrir/commands/commands/dec_speech_pitch.py index 1caf6772..09e53b7c 100644 --- a/src/fenrir/commands/commands/dec_speech_pitch.py +++ b/src/fenrir/commands/commands/dec_speech_pitch.py @@ -23,8 +23,7 @@ class command(): if value < 0.0: value = 0.0 self.env['runtime']['settingsManager'].setSetting('speech', 'pitch', str(value)) - - self.env['runtime']['outputManager'].presentText(_("{0} percent speech pitch").format(int(value * 100)) soundIcon='', interrupt=True) + self.env['runtime']['outputManager'].presentText(_('{0} percent speech pitch').format(int(value * 100)), soundIcon='', interrupt=True) def setCallback(self, callback): pass