Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'python/src/tcf/util/event.py')
-rw-r--r--python/src/tcf/util/event.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/src/tcf/util/event.py b/python/src/tcf/util/event.py
index 2ca38df63..676f8c884 100644
--- a/python/src/tcf/util/event.py
+++ b/python/src/tcf/util/event.py
@@ -13,8 +13,8 @@ import threading
from tcf import protocol, channel
class DelegatingEventListener(channel.EventListener):
- def __init__(self, callable):
- self._callable = callable
+ def __init__(self, _callable):
+ self._callable = _callable
def event(self, name, data):
try:
args = channel.fromJSONSequence(data)

Back to the top