Browse Source

fix: break the loop

283
ThomasV 12 years ago
parent
commit
52d72a527a
  1. 1
      lib/interface.py

1
lib/interface.py

@ -106,6 +106,7 @@ class Interface(threading.Thread):
for k,v in self.subscriptions.items():
if (method, params) in v:
channel = k
break
else:
print "received unexpected notification", method, params
print self.subscriptions

Loading…
Cancel
Save