diff options
Diffstat (limited to 'client/speaker.py')
| -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 ea8355c..8cedaa2 100644 --- a/client/speaker.py +++ b/client/speaker.py @@ -38,7 +38,7 @@ class AbstractSpeaker(object): @classmethod @abstractmethod def is_available(cls): - return True + return (find_executable('aplay') is not None) def __init__(self): self._logger = logging.getLogger(__name__) |
