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:14:04 +0100 |
commit | 6e039bf7c00cd6fef1c57a3c0e838ab528d99587 (patch) | |
tree | dba2a7345b47892864ff33003b55368cecfd64ae /scripts | |
parent | 7a98387e29e3bb64971ac44655f6cf853d167d42 (diff) | |
download | poky-6e039bf7c00cd6fef1c57a3c0e838ab528d99587.tar.gz |
devtool: fix wrong indentation
(From OE-Core rev: 551638c44215a35238f22aba575d571572046cd0)
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-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): | |||
657 | for newpatch in newpatches: | 657 | for newpatch in newpatches: |
658 | if seqpatch_re.search(newpatch) and patchfile[5:] == newpatch[5:]: | 658 | if seqpatch_re.search(newpatch) and patchfile[5:] == newpatch[5:]: |
659 | break | 659 | break |
660 | else: | 660 | else: |
661 | removepatches.append(patch) | 661 | removepatches.append(patch) |
662 | elif patchfile not in newpatches: | 662 | elif patchfile not in newpatches: |
663 | removepatches.append(patch) | 663 | removepatches.append(patch) |
664 | finally: | 664 | finally: |