summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOla x Nilsson <ola.x.nilsson@axis.com>2022-06-17 13:27:19 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-06-21 20:49:49 +0100
commit9fc1bab6b7e3c0fca3ddec4bc8c7763d2aff8bab (patch)
treed253b1b602011f7f3d672e5b206c1c292868031a
parentc9aaca3dd2dfdf4a291d6e1f6263037e0f54b4b6 (diff)
downloadbitbake-9fc1bab6b7e3c0fca3ddec4bc8c7763d2aff8bab.tar.gz
ConfHandler: Remove lingering close
The f.close() statement should have been removed in 459ad524756a3f9b50feeedf31e33502dceae8d5. 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>
-rw-r--r--lib/bb/parse/parse_py/ConfHandler.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/bb/parse/parse_py/ConfHandler.py b/lib/bb/parse/parse_py/ConfHandler.py
index b895d5b5e..810b6011c 100644
--- a/lib/bb/parse/parse_py/ConfHandler.py
+++ b/lib/bb/parse/parse_py/ConfHandler.py
@@ -147,8 +147,6 @@ def handle(fn, data, include):
if oldfile:
data.setVar('FILE', oldfile)
- f.close()
-
for f in confFilters:
f(fn, data)