diff options
author | Brandon Maier | 2024-06-04 16:16:06 +0000 |
---|---|---|
committer | Simon Glass | 2024-07-03 07:36:33 +0100 |
commit | 698b60a6a23a29a556d5a00c5eead63fb3fdd4f3 (patch) | |
tree | a2c68ec617fe5e4a5b71b589658cffaef3974b62 /tools/buildman | |
parent | 357bfca5e616c7fc003cce1ddda44016660cf75f (diff) |
tools: binman: fix deprecated Python ConfigParser methods
The method `ConfigParser.readfp()` is marked deprecated[1].
In Python 3.12 this method have been removed, so replace it with
`ConfigParser.read_file()`.
[1] https://docs.python.org/3.11/library/configparser.html#configparser.ConfigParser.readfp
Signed-off-by: Brandon Maier <brandon.maier@collins.com>
CC: Simon Glass <sjg@chromium.org>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/buildman')
-rw-r--r-- | tools/buildman/bsettings.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/buildman/bsettings.py b/tools/buildman/bsettings.py index e225ac2ca0f..aea724fc559 100644 --- a/tools/buildman/bsettings.py +++ b/tools/buildman/bsettings.py @@ -29,7 +29,7 @@ def setup(fname=''): settings.read(config_fname) def add_file(data): - settings.readfp(io.StringIO(data)) + settings.read_file(io.StringIO(data)) def get_items(section): """Get the items from a section of the config. |