Fix linebreaks in server_job.py
While I was looking up the fix for barrier.py (see previous patch), I've
noticed that there was a line broken on server_job.py'>server_job.py for no apparent
reason, since doing everything in one line wouldn't break the 80
character width restriction. I thought it wouldn't hurt to send this
patch :)
Signed-off-by: Lucas Meneghel Rodrigues <lucasmr@br.ibm.com>
git-svn-id: http://test.kernel.org/svn/autotest/trunk@1056 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/server/server_job.py b/server/server_job.py
index be75215..637bc20 100755
--- a/server/server_job.py
+++ b/server/server_job.py
@@ -210,8 +210,7 @@
finally:
if machines:
namespace['test_start_time'] = test_start_time
- exec(preamble + crashdumps, namespace,
- namespace)
+ exec(preamble + crashdumps, namespace, namespace)
if reboot and machines:
exec(preamble + cleanup, namespace, namespace)
if install_after and machines: