diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2014-09-15 10:31:50 +0200 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2014-09-26 13:34:46 +0200 |
| commit | 8a396c3cc0b94adfb448bcc407011481adcb2b20 (patch) | |
| tree | 96621c1f30d5bd1c3015aebd4ea41a95728760c9 /client/speaker.py | |
| parent | 8c3c9206ccd52ba75699e0ef333a1a7a14815501 (diff) | |
| download | jasper-client-8a396c3cc0b94adfb448bcc407011481adcb2b20.tar.gz jasper-client-8a396c3cc0b94adfb448bcc407011481adcb2b20.zip | |
Fix missing brackets in speaker.py testing code
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 24041e2..df63eee 100644 --- a/client/speaker.py +++ b/client/speaker.py @@ -241,7 +241,7 @@ if __name__ == '__main__': for engine in AbstractSpeaker.__subclasses__(): if hasattr(engine, 'SLUG'): instance = engine() - if instance.is_available: + if instance.is_available(): engines.append(instance) for engine in engines: |
