diff options
| author | Paul Spooren | 2020-07-12 04:44:55 +0000 |
|---|---|---|
| committer | Daniel Golle | 2020-07-13 20:24:30 +0000 |
| commit | b9a89bf7b55d37ef750015e0be2378cf8e35285f (patch) | |
| tree | 4e5743ae9354b1584bd842a6dfe337ffc4cf9cb4 | |
| parent | 9c0ad7f1d5e564420ae1e6493c2fc2622fd27c8c (diff) | |
| download | openwrt-b9a89bf7b55d37ef750015e0be2378cf8e35285f.tar.gz | |
build,json: fix compatibility with Python 3.5
The f-string feature was introduced in Python 3.6. As Buildbots may run
on Debian 9, which comes per default with Python 3.5, this would cause
an issue. Instead of f-strings use the *legacy* `.format()` function.
Signed-off-by: Paul Spooren <mail@aparcar.org>
| -rwxr-xr-x | scripts/json_overview_image_info.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/json_overview_image_info.py b/scripts/json_overview_image_info.py index c76a442840..ca6fbbc962 100755 --- a/scripts/json_overview_image_info.py +++ b/scripts/json_overview_image_info.py @@ -38,7 +38,7 @@ if output: "make", "--no-print-directory", "-C", - f"target/linux/{output['target'].split('/')[0]}", + "target/linux/{}".format(output['target'].split('/')[0]), "val.DEFAULT_PACKAGES", "val.ARCH_PACKAGES", ], |