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/harness.py b/client/bin/harness.py
index 2a6378f..86441b8 100755
--- a/client/bin/harness.py
+++ b/client/bin/harness.py
@@ -8,77 +8,77 @@
 import os, sys
 
 class harness:
-	"""The NULL server harness
+    """The NULL server harness
 
-	Properties:
-		job
-			The job object for this job
-	"""
+    Properties:
+            job
+                    The job object for this job
+    """
 
-	def __init__(self, job):
-		"""
-			job
-				The job object for this job
-		"""
-		self.setup(job)
+    def __init__(self, job):
+        """
+                job
+                        The job object for this job
+        """
+        self.setup(job)
 
 
-	def setup(self, job):
-		"""
-			job
-				The job object for this job
-		"""
-		self.job = job
+    def setup(self, job):
+        """
+                job
+                        The job object for this job
+        """
+        self.job = job
 
-		configd = os.path.join(os.environ['AUTODIR'], 'configs')
-		if os.path.isdir(configd):
-			(name, dirs, files) = os.walk(configd).next()
-			job.config_set('kernel.default_config_set',
-						[ configd + '/' ] + files)
+        configd = os.path.join(os.environ['AUTODIR'], 'configs')
+        if os.path.isdir(configd):
+            (name, dirs, files) = os.walk(configd).next()
+            job.config_set('kernel.default_config_set',
+                                    [ configd + '/' ] + files)
 
 
-	def run_start(self):
-		"""A run within this job is starting"""
-		pass
+    def run_start(self):
+        """A run within this job is starting"""
+        pass
 
 
-	def run_pause(self):
-		"""A run within this job is completing (expect continue)"""
-		pass
+    def run_pause(self):
+        """A run within this job is completing (expect continue)"""
+        pass
 
 
-	def run_reboot(self):
-		"""A run within this job is performing a reboot
-		   (expect continue following reboot)
-		"""
-		pass
+    def run_reboot(self):
+        """A run within this job is performing a reboot
+           (expect continue following reboot)
+        """
+        pass
 
 
-	def run_abort(self):
-		"""A run within this job is aborting. It all went wrong"""
-		pass
+    def run_abort(self):
+        """A run within this job is aborting. It all went wrong"""
+        pass
 
 
-	def run_complete(self):
-		"""A run within this job is completing (all done)"""
-		pass
+    def run_complete(self):
+        """A run within this job is completing (all done)"""
+        pass
 
 
-	def test_status(self, status, tag):
-		"""A test within this job is completing"""
-		pass
+    def test_status(self, status, tag):
+        """A test within this job is completing"""
+        pass
 
 
-	def test_status_detail(self, code, subdir, operation, status, tag):
-		"""A test within this job is completing (detail)"""
-		pass
+    def test_status_detail(self, code, subdir, operation, status, tag):
+        """A test within this job is completing (detail)"""
+        pass
 
 
 def select(which, job):
-	if not which:
-		which = 'standalone'
-	
-	exec "import harness_%s" % (which)
-	exec "myharness = harness_%s.harness_%s(job)" % (which, which)
+    if not which:
+        which = 'standalone'
 
-	return myharness
+    exec "import harness_%s" % (which)
+    exec "myharness = harness_%s.harness_%s(job)" % (which, which)
+
+    return myharness