Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnton Leherbauer2012-01-12 11:12:21 +0000
committerAnton Leherbauer2012-01-12 11:18:35 +0000
commit1b4dc78cb6004ef9b1bc2eb9d3cff5fc1e30c6d9 (patch)
treedf2aa65d3271a91de169c65000e540a8d3cd5275
parentc64f2281df96e79fe524cf8594d9434e2d672ee5 (diff)
downloadorg.eclipse.tcf-1b4dc78cb6004ef9b1bc2eb9d3cff5fc1e30c6d9.tar.gz
org.eclipse.tcf-1b4dc78cb6004ef9b1bc2eb9d3cff5fc1e30c6d9.tar.xz
org.eclipse.tcf-1b4dc78cb6004ef9b1bc2eb9d3cff5fc1e30c6d9.zip
TCF Python: Fix wrong slice bound
-rw-r--r--python/src/tcf/services/remote/ProcessesProxy.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/src/tcf/services/remote/ProcessesProxy.py b/python/src/tcf/services/remote/ProcessesProxy.py
index baad634b6..4e1dff2c6 100644
--- a/python/src/tcf/services/remote/ProcessesProxy.py
+++ b/python/src/tcf/services/remote/ProcessesProxy.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
@@ -140,7 +140,7 @@ class ProcessesProxy(processes.ProcessesService):
if not error:
assert len(args) == 4
error = self.toError(args[0])
- dont_stop, dont_pass, pending = args[1:3]
+ dont_stop, dont_pass, pending = args[1:4]
done.doneGetSignalMask(self.token, error, dont_stop, dont_pass, pending)
return GetSignalMaskCommand().token

Back to the top