diff --git a/support/scripts/pkg-stats b/support/scripts/pkg-stats index e549a0ac54..d222ba37c3 100755 --- a/support/scripts/pkg-stats +++ b/support/scripts/pkg-stats @@ -144,8 +144,8 @@ class Package: self.infras = list() with open(os.path.join(brpath, self.path), 'r') as f: lines = f.readlines() - for l in lines: - match = INFRA_RE.match(l) + for line in lines: + match = INFRA_RE.match(line) if not match: continue infra = match.group(1)