diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2014-11-27 23:15:31 +0100 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2014-11-27 23:15:31 +0100 |
| commit | 8393f98f7c88e6d7e8d8276b4bab74c25aacb3a3 (patch) | |
| tree | 778551236656ba93f3342e13add07358cafd6f5e | |
| parent | 78bee398f05fc0d2fda1504219ef0f88aa060fd0 (diff) | |
| download | jasper-client-8393f98f7c88e6d7e8d8276b4bab74c25aacb3a3.tar.gz jasper-client-8393f98f7c88e6d7e8d8276b4bab74c25aacb3a3.zip | |
Small bugfix in tts.py
| -rw-r--r-- | client/tts.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/client/tts.py b/client/tts.py index 9a9cf8b..88625ad 100644 --- a/client/tts.py +++ b/client/tts.py @@ -511,9 +511,8 @@ def get_engine_by_slug(slug=None): "This is most certainly a bug." % slug) engine = selected_engines[0] if not engine.is_available(): - raise ValueError("TTS engine '%s' is not available (due to " + - "missing dependencies, missing " + - "dependencies, etc.)" % slug) + raise ValueError(("TTS engine '%s' is not available (due to " + + "missing dependencies, etc.)") % slug) return engine |
