Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJerome Guiban2013-01-04 13:37:19 +0000
committerAnton Leherbauer2013-01-04 13:37:19 +0000
commitd9f4b749a41ee44cc5d27992e10fbf4ab826d380 (patch)
treeb4e4765836f71c55c5e83692188aebe1d0d900cf /python/src
parent4d4b4ec74dadbb8eab4b2f4bd184920fde578e34 (diff)
downloadorg.eclipse.tcf-d9f4b749a41ee44cc5d27992e10fbf4ab826d380.tar.gz
org.eclipse.tcf-d9f4b749a41ee44cc5d27992e10fbf4ab826d380.tar.xz
org.eclipse.tcf-d9f4b749a41ee44cc5d27992e10fbf4ab826d380.zip
TCF Python: Bug 397360 - Bug in ExpressionProxy.getContext
Diffstat (limited to 'python/src')
-rw-r--r--python/src/tcf/services/remote/ExpressionsProxy.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/src/tcf/services/remote/ExpressionsProxy.py b/python/src/tcf/services/remote/ExpressionsProxy.py
index f8dfa8179..72529014b 100644
--- a/python/src/tcf/services/remote/ExpressionsProxy.py
+++ b/python/src/tcf/services/remote/ExpressionsProxy.py
@@ -1,5 +1,5 @@
# *******************************************************************************
-# * Copyright (c) 2011, 2012 Wind River Systems, Inc. and others.
+# * Copyright (c) 2011, 2013 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
@@ -102,7 +102,7 @@ class ExpressionsProxy(expressions.ExpressionsService):
if not error:
assert len(args) == 2
error = self.toError(args[0])
- if args[1]: ctx = expressions.Expression(service, args[1])
+ if args[1]: ctx = expressions.Expression(args[1])
done.doneGetContext(self.token, error, ctx)
return GetContextCommand().token

Back to the top