diff options
author | Jussi Kukkonen <jussi.kukkonen@intel.com> | 2016-05-31 10:17:20 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-06-02 08:36:29 +0100 |
commit | 5a9745dd631eb697c30cd49e1dd065f4f57e7393 (patch) | |
tree | 4acea64051d9b193e8c2cc46ebb53679ede4d1dc /meta/lib/oe/distro_check.py | |
parent | 3a763398272975eee6189209f5b741d7a806376e (diff) | |
download | poky-5a9745dd631eb697c30cd49e1dd065f4f57e7393.tar.gz |
distro_check.py: Don't mix tabs and spaces
(From OE-Core rev: 6c8d1876f5a2d53fa89531e4a5f414d5d5da77be)
Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oe/distro_check.py')
-rw-r--r-- | meta/lib/oe/distro_check.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oe/distro_check.py b/meta/lib/oe/distro_check.py index 746e242f5d..f1f1fbbb28 100644 --- a/meta/lib/oe/distro_check.py +++ b/meta/lib/oe/distro_check.py | |||
@@ -357,8 +357,8 @@ def compare_in_distro_packages_list(distro_check_dir, d): | |||
357 | 357 | ||
358 | 358 | ||
359 | if tmp != None: | 359 | if tmp != None: |
360 | list = tmp.split(' ') | 360 | list = tmp.split(' ') |
361 | for item in list: | 361 | for item in list: |
362 | matching_distros.append(item) | 362 | matching_distros.append(item) |
363 | bb.note("Matching: %s" % matching_distros) | 363 | bb.note("Matching: %s" % matching_distros) |
364 | return matching_distros | 364 | return matching_distros |