Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrederic Leger2012-02-24 08:02:44 +0000
committerAnton Leherbauer2012-02-24 08:02:44 +0000
commita3a93861c1945d9f0f3478482b33d602079a6d9b (patch)
tree1732ac92b13dbf2d799bec4430b071a97708aa35
parent067d184f46c393bc8e5801a04c36c028c4fc1094 (diff)
downloadorg.eclipse.tcf-a3a93861c1945d9f0f3478482b33d602079a6d9b.tar.gz
org.eclipse.tcf-a3a93861c1945d9f0f3478482b33d602079a6d9b.tar.xz
org.eclipse.tcf-a3a93861c1945d9f0f3478482b33d602079a6d9b.zip
TCF Python: Bug 372304 - SysMonitorProxy calls for doneGetCommandLine()
instead of doneGetEnvironment()
-rw-r--r--python/src/tcf/services/remote/SysMonitorProxy.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/src/tcf/services/remote/SysMonitorProxy.py b/python/src/tcf/services/remote/SysMonitorProxy.py
index bf1f16bd7..7d9b2835c 100644
--- a/python/src/tcf/services/remote/SysMonitorProxy.py
+++ b/python/src/tcf/services/remote/SysMonitorProxy.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. self program and the accompanying materials
# * are made available under the terms of the Eclipse Public License v1.0
# * which accompanies self distribution, and is available at
@@ -73,5 +73,5 @@ class SysMonitorProxy(sysmonitor.SysMonitorService):
assert len(args) == 2
error = self.toError(args[0])
arr = args[1]
- done.doneGetCommandLine(self.token, error, arr)
+ done.doneGetEnvironment(self.token, error, arr)
return GetEnvironmentCommand().token

Back to the top