Convert all python code to use four-space indents instead of eight-space tabs.

Signed-off-by: John Admanski <jadmanski@google.com>



git-svn-id: http://test.kernel.org/svn/autotest/trunk@1658 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/client/bin/autotest_client b/client/bin/autotest_client
index 762d0cb..1e275a4 100755
--- a/client/bin/autotest_client
+++ b/client/bin/autotest_client
@@ -17,11 +17,11 @@
 
 # If we're using cpusets, run inside the root one by default
 if os.path.exists("/dev/cpuset/tasks") and getpass.getuser() == "root":
-	utils.write_one_line("/dev/cpuset/tasks", str(os.getpid()))
+    utils.write_one_line("/dev/cpuset/tasks", str(os.getpid()))
 
 autodir = os.path.dirname(sys.argv[0])
 autotest = os.path.join(autodir, 'autotest')
 cmd = ' '.join([autotest, '-H simple'] + sys.argv[1:])
 exit_code = subprocess.call(cmd, shell=True, stderr=subprocess.STDOUT,
-			    close_fds=False)
+                            close_fds=False)
 sys.exit(exit_code) # pass on the exit status from autotest