This is the result of a batch reindent.py across our tree.
As Martin pointed out, we ought to be more careful and
create a pre-svn commit script to avoid inserting trash
in the tree, meanwhile, this is a good start to cleanup
things

Signed-off-by: Lucas Meneghel Rodrigues <lmr@redhat.com>


git-svn-id: http://test.kernel.org/svn/autotest/trunk@3487 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/client/common_lib/utils.py b/client/common_lib/utils.py
index a285732..a1161d1 100644
--- a/client/common_lib/utils.py
+++ b/client/common_lib/utils.py
@@ -978,8 +978,8 @@
     pid_path = os.path.abspath(os.path.join(my_path, "../.."))
     pidf = open(os.path.join(pid_path, "%s.pid" % program_name), "w")
     if pidf:
-      pidf.write("%s\n" % os.getpid())
-      pidf.close()
+        pidf.write("%s\n" % os.getpid())
+        pidf.close()
 
 
 def get_relative_path(path, reference):