Browse Source

distro_check.py: Don't mix tabs and spaces

Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Jussi Kukkonen 8 years ago
parent
commit
6c8d1876f5
1 changed files with 2 additions and 2 deletions
  1. 2 2
      meta/lib/oe/distro_check.py

+ 2 - 2
meta/lib/oe/distro_check.py

@@ -357,8 +357,8 @@ def compare_in_distro_packages_list(distro_check_dir, d):
 
     
     if tmp != None:
-	list = tmp.split(' ')
-	for item in list:
+        list = tmp.split(' ')
+        for item in list:
             matching_distros.append(item)
     bb.note("Matching: %s" % matching_distros)
     return matching_distros