diff options
author | Markus Lehtonen <markus.lehtonen@linux.intel.com> | 2015-05-21 17:47:13 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-06-18 09:11:59 +0100 |
commit | 551638c44215a35238f22aba575d571572046cd0 (patch) | |
tree | f4eca0fd61830f6d760efe9b621593c5b98b46ef /scripts/lib/devtool | |
parent | 45b368427accf6d519078812d5335ec250bacef8 (diff) | |
download | openembedded-core-551638c44215a35238f22aba575d571572046cd0.tar.gz openembedded-core-551638c44215a35238f22aba575d571572046cd0.tar.bz2 openembedded-core-551638c44215a35238f22aba575d571572046cd0.zip |
devtool: fix wrong indentation
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Diffstat (limited to 'scripts/lib/devtool')
-rw-r--r-- | scripts/lib/devtool/standard.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/lib/devtool/standard.py b/scripts/lib/devtool/standard.py index c5b32d81db..1e99413365 100644 --- a/scripts/lib/devtool/standard.py +++ b/scripts/lib/devtool/standard.py @@ -657,8 +657,8 @@ def update_recipe(args, config, basepath, workspace): for newpatch in newpatches: if seqpatch_re.search(newpatch) and patchfile[5:] == newpatch[5:]: break - else: - removepatches.append(patch) + else: + removepatches.append(patch) elif patchfile not in newpatches: removepatches.append(patch) finally: |