2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-12 10:05:39 +00:00

PEP fixes for ci / maintenance scripts

This commit is contained in:
Matthias
2021-11-19 21:50:41 +01:00
parent 4e113798b4
commit 9abbb6cb5e
4 changed files with 11 additions and 8 deletions

View File

@ -24,7 +24,7 @@ for line in str(out.decode()).split('\n'):
if len(locales) > 0:
print("There are {n} unstaged locale files:".format(n=len(locales)))
for l in locales:
print(" - {l}".format(l=l))
for lang in locales:
print(" - {l}".format(l=lang))
sys.exit(len(locales))