diff options
author | James Bowes <jbowes@redhat.com> | 2007-09-29 14:08:37 -0400 |
---|---|---|
committer | James Bowes <jbowes@redhat.com> | 2007-09-29 14:08:37 -0400 |
commit | e153b175bff255b9af212f6d969cb75503ab2f14 (patch) | |
tree | af340f21b7eefcbd59662680410c8c736caba3a3 /modules/process.py | |
parent | 99069f42f71f00cd0b44b59e6627657409569b6b (diff) | |
download | func-e153b175bff255b9af212f6d969cb75503ab2f14.tar.gz func-e153b175bff255b9af212f6d969cb75503ab2f14.tar.xz func-e153b175bff255b9af212f6d969cb75503ab2f14.zip |
Fix bad indentation in minion, modules and overlord
Diffstat (limited to 'modules/process.py')
-rwxr-xr-x | modules/process.py | 2 |
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" |