Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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