Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnton Leherbauer2012-01-10 08:26:18 +0000
committerAnton Leherbauer2012-01-10 08:32:27 +0000
commit15ea57ef8689b9aeba83cd5d7befd900ea2f8ae4 (patch)
tree5a236fde13c805088c35f7e3a4804f4eb6320573 /python/src
parentf219938c5b3168dc5b4e3735e382d6c9011b5e03 (diff)
downloadorg.eclipse.tcf-15ea57ef8689b9aeba83cd5d7befd900ea2f8ae4.tar.gz
org.eclipse.tcf-15ea57ef8689b9aeba83cd5d7befd900ea2f8ae4.tar.xz
org.eclipse.tcf-15ea57ef8689b9aeba83cd5d7befd900ea2f8ae4.zip
TCF Python: Fix missing initialization of listener map
Diffstat (limited to 'python/src')
-rw-r--r--python/src/tcf/services/remote/ExpressionsProxy.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/python/src/tcf/services/remote/ExpressionsProxy.py b/python/src/tcf/services/remote/ExpressionsProxy.py
index 064152c01..462756f3c 100644
--- a/python/src/tcf/services/remote/ExpressionsProxy.py
+++ b/python/src/tcf/services/remote/ExpressionsProxy.py
@@ -1,5 +1,5 @@
# *******************************************************************************
-# * Copyright (c) 2011 Wind River Systems, Inc. and others.
+# * Copyright (c) 2011, 2012 Wind River Systems, Inc. and others.
# * All rights reserved. This program and the accompanying materials
# * are made available under the terms of the Eclipse Public License v1.0
# * which accompanies this distribution, and is available at
@@ -16,6 +16,7 @@ from tcf.channel.Command import Command
class ExpressionsProxy(expressions.ExpressionsService):
def __init__(self, channel):
self.channel = channel
+ self.listeners = {}
def assign(self, id, value, done):
done = self._makeCallback(done)

Back to the top