Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnton Leherbauer2011-10-25 06:28:01 +0000
committerAnton Leherbauer2011-10-25 06:28:01 +0000
commit8eed07c010449884613f4d33d3a45fa1d34bfe50 (patch)
tree71bb277c01a02ca09e1c51aa3270e451958ae5ff /python/src
parent8937fc15ae552346c3afe7cba2fa798a882a80f4 (diff)
downloadorg.eclipse.tcf-8eed07c010449884613f4d33d3a45fa1d34bfe50.tar.gz
org.eclipse.tcf-8eed07c010449884613f4d33d3a45fa1d34bfe50.tar.xz
org.eclipse.tcf-8eed07c010449884613f4d33d3a45fa1d34bfe50.zip
TCF Python: Fix missing listeners initialization in StreamsProxy
Diffstat (limited to 'python/src')
-rw-r--r--python/src/tcf/services/remote/StreamsProxy.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/python/src/tcf/services/remote/StreamsProxy.py b/python/src/tcf/services/remote/StreamsProxy.py
index 3d700c488..d4149099d 100644
--- a/python/src/tcf/services/remote/StreamsProxy.py
+++ b/python/src/tcf/services/remote/StreamsProxy.py
@@ -16,6 +16,7 @@ from tcf.channel.Command import Command
class StreamsProxy(streams.StreamsService):
def __init__(self, channel):
self.channel = channel
+ self.listeners = {}
def connect(self, stream_id, done):
done = self._makeCallback(done)

Back to the top