Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorChris Wyse2012-02-27 07:48:13 +0000
committerAnton Leherbauer2012-02-27 07:48:13 +0000
commit39b347cdbd94cd71dec594d8050977a894aaab1e (patch)
tree879c6ba2c53c7ae6b09c10a6edbf2bf245ce3cff /python
parent3f8a73f82fba08610ece56a15fa0507bc9f7f0f8 (diff)
downloadorg.eclipse.tcf-39b347cdbd94cd71dec594d8050977a894aaab1e.tar.gz
org.eclipse.tcf-39b347cdbd94cd71dec594d8050977a894aaab1e.tar.xz
org.eclipse.tcf-39b347cdbd94cd71dec594d8050977a894aaab1e.zip
TCF Python: Follow up on fix for bug 372472
Diffstat (limited to 'python')
-rw-r--r--python/src/tcf/services/remote/MemoryProxy.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/src/tcf/services/remote/MemoryProxy.py b/python/src/tcf/services/remote/MemoryProxy.py
index 07e0137c7..cb181069b 100644
--- a/python/src/tcf/services/remote/MemoryProxy.py
+++ b/python/src/tcf/services/remote/MemoryProxy.py
@@ -135,7 +135,7 @@ class MemContext(memory.MemoryContext):
e = memory.MemoryError(error.message)
else:
assert len(args) == 2
- e = self.toMemoryError(addr, args[1], args[2])
+ e = self.toMemoryError(addr, args[0], args[1])
done.doneMemory(self.token, e)
return SetCommand().token

Back to the top