summaryrefslogtreecommitdiffstats
path: root/modules/process.py
diff options
context:
space:
mode:
Diffstat (limited to 'modules/process.py')
-rwxr-xr-xmodules/process.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/process.py b/modules/process.py
index 78e5aea..94a0240 100755
--- a/modules/process.py
+++ b/modules/process.py
@@ -57,7 +57,7 @@ class ProcessModule(func_module.FuncModule):
def kill(self,pid,signal="TERM"):
if pid == "0":
- raise codes.FuncException("Killing pid group 0 not permitted")
+ raise codes.FuncException("Killing pid group 0 not permitted")
if signal == "":
# this is default /bin/kill behaviour, it claims, but enfore it anyway
signal = "-TERM"