diff options
Diffstat (limited to 'client')
| -rw-r--r-- | client/speaker.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/speaker.py b/client/speaker.py index ddf5e54..24041e2 100644 --- a/client/speaker.py +++ b/client/speaker.py @@ -117,7 +117,7 @@ class saySpeaker(AbstractSpeaker): @classmethod def is_available(cls): - return (super(saySpeaker, cls).is_available() and subprocess.call(['which','say']) == 0) + return (platform.system() == 'darwin') def say(self, phrase): cmd = ['say', str(phrase)] |
