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/tests/cerberus/cerberus.py b/client/tests/cerberus/cerberus.py
index b1db5d2..828bcea 100644
--- a/client/tests/cerberus/cerberus.py
+++ b/client/tests/cerberus/cerberus.py
@@ -5,9 +5,9 @@
 
 class cerberus(test.test):
     """
-    This autotest module runs CTCS (Cerberus Test Control System). This test 
-    suite was developed for the now extinct VA Linux's manufacturing system 
-    it has several hardware and software stress tests that can be run in 
+    This autotest module runs CTCS (Cerberus Test Control System). This test
+    suite was developed for the now extinct VA Linux's manufacturing system
+    it has several hardware and software stress tests that can be run in
     parallel. It does have a control file system that allows testers to specify
     the sorts of tests that they want to see executed. It's an excelent stress
     test for hardware and kernel.
@@ -24,7 +24,7 @@
         self.nfail = 0
 
 
-    def setup(self, tarball='ctcs-1.3.1pre1.tar.bz2', length = '4h', 
+    def setup(self, tarball='ctcs-1.3.1pre1.tar.bz2', length = '4h',
               tcf_contents=None):
         """
         Builds the test suite, and sets up the control file that is going to
@@ -39,7 +39,7 @@
         utils.extract_tarball_to_dir(cerberus_tarball, self.srcdir)
 
         os.chdir(self.srcdir)
-        # Apply patch to fix build problems on newer distros (absence of 
+        # Apply patch to fix build problems on newer distros (absence of
         # asm/page.h include.
         utils.system('patch -p1 < ../fix-ctcs-build.patch')
         utils.system('make')
@@ -80,7 +80,7 @@
         # After we are done with this iterations, we move the log files to
         # the results dir
         log_base_path = os.path.join(self.srcdir, 'log')
-        log_dir = glob.glob(os.path.join(log_base_path, 
+        log_dir = glob.glob(os.path.join(log_base_path,
                                          'autotest.tcf.log.*'))[0]
         logging.debug('Copying %s log directory to results dir', log_dir)
         dst = os.path.join(self.resultsdir, os.path.basename(log_dir))