summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2014-09-15 10:31:50 +0200
committerschneefux <schneefux+commit@schneefux.xyz>2014-09-26 13:34:46 +0200
commit8a396c3cc0b94adfb448bcc407011481adcb2b20 (patch)
tree96621c1f30d5bd1c3015aebd4ea41a95728760c9
parent8c3c9206ccd52ba75699e0ef333a1a7a14815501 (diff)
downloadjasper-client-8a396c3cc0b94adfb448bcc407011481adcb2b20.tar.gz
jasper-client-8a396c3cc0b94adfb448bcc407011481adcb2b20.zip
Fix missing brackets in speaker.py testing code
-rw-r--r--client/speaker.py2
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: