[Buildroot] [git commit branch/next] support/scripts/pkg-stats: fix flake8 E741 ambiguous variable name
From: Yann E. MORIN <hidden>
Date: 2021-08-03 21:21:11
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Yann E. MORIN <hidden>
Date: 2021-08-03 21:21:11
Subsystem:
the rest · Maintainer:
Linus Torvalds
commit: https://git.buildroot.net/buildroot/commit/?id=c2ebfe7d78f999ff2201a4d9b59cc8c0efe85218 branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/next Signed-off-by: Matthew Weber <redacted> Signed-off-by: Yann E. MORIN <redacted> --- support/scripts/pkg-stats | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/support/scripts/pkg-stats b/support/scripts/pkg-stats
index c7e30dfd2b..0cd3674c52 100755
--- a/support/scripts/pkg-stats
+++ b/support/scripts/pkg-stats@@ -375,9 +375,9 @@ def package_init_make_info(): variable_list = [x[5:] for x in variable_list if x.startswith("HOST_")] + \ [x for x in variable_list if not x.startswith("HOST_")] - for l in variable_list: + for item in variable_list: # Get variable name and value - pkgvar, value = l.split("=") + pkgvar, value = item.split("=") # Strip the suffix according to the variable if pkgvar.endswith("_LICENSE"):
_______________________________________________ buildroot mailing list buildroot@busybox.net http://lists.busybox.net/mailman/listinfo/buildroot