Skip to content

Commit

Permalink
Fix missing brackets in speaker.py testing code
Browse files Browse the repository at this point in the history
  • Loading branch information
Holzhaus committed Sep 15, 2014
1 parent 78869b5 commit 1f2e8a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/speaker.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ def newSpeaker():
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:
Expand Down

0 comments on commit 1f2e8a0

Please sign in to comment.