diff options
author | Ola x Nilsson <ola.x.nilsson@axis.com> | 2022-06-17 13:27:19 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-06-21 20:50:57 +0100 |
commit | 5aca7a8f10e16c402a1f2625f9c34a3accb9c6cc (patch) | |
tree | 43c0e01f8a8822d9e4bd333f58620a3f26a58533 /bitbake | |
parent | 62af35ffb4203f5b6ad3a66c8ccf7c51fb89f903 (diff) | |
download | poky-5aca7a8f10e16c402a1f2625f9c34a3accb9c6cc.tar.gz |
bitbake: ConfHandler: Remove lingering close
The f.close() statement should have been removed in
459ad524756a3f9b50feeedf31e33502dceae8d5.
(Bitbake rev: 9fc1bab6b7e3c0fca3ddec4bc8c7763d2aff8bab)
Signed-off-by: Ola x Nilsson <ola.x.nilsson@axis.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/parse/parse_py/ConfHandler.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/bitbake/lib/bb/parse/parse_py/ConfHandler.py b/bitbake/lib/bb/parse/parse_py/ConfHandler.py index b895d5b5ef..810b6011cf 100644 --- a/bitbake/lib/bb/parse/parse_py/ConfHandler.py +++ b/bitbake/lib/bb/parse/parse_py/ConfHandler.py | |||
@@ -147,8 +147,6 @@ def handle(fn, data, include): | |||
147 | if oldfile: | 147 | if oldfile: |
148 | data.setVar('FILE', oldfile) | 148 | data.setVar('FILE', oldfile) |
149 | 149 | ||
150 | f.close() | ||
151 | |||
152 | for f in confFilters: | 150 | for f in confFilters: |
153 | f(fn, data) | 151 | f(fn, data) |
154 | 152 | ||