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/bin/kernel.py b/client/bin/kernel.py
index 9ec59a9..b8b3a65 100755
--- a/client/bin/kernel.py
+++ b/client/bin/kernel.py
@@ -783,11 +783,11 @@
 
 
 def rpm_kernel_vendor(job, rpm_package, subdir):
-        vendor = utils.get_os_vendor()
-        if vendor == "SUSE":
-            return rpm_kernel_suse(job, rpm_package, subdir)
-        else:
-            return rpm_kernel(job, rpm_package, subdir)
+    vendor = utils.get_os_vendor()
+    if vendor == "SUSE":
+        return rpm_kernel_suse(job, rpm_package, subdir)
+    else:
+        return rpm_kernel(job, rpm_package, subdir)
 
 
 # just make the preprocessor a nop
@@ -808,7 +808,7 @@
     """
     kernel_paths = [preprocess_path(path)]
     if kernel_paths[0].endswith('.list'):
-        # Fetch the list of packages to install
+    # Fetch the list of packages to install
         kernel_list = os.path.join(tmp_dir, 'kernel.list')
         utils.get_file(kernel_paths[0], kernel_list)
         kernel_paths = [p.strip() for p in open(kernel_list).readlines()]