Fix out of bounds resolution error in gen_py script

This commit is contained in:
Miepee 2022-10-26 15:25:28 +02:00 committed by Riesi
parent 5df6a68a0a
commit f0805eca1e
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ def main():
for res in args.resolution or []:
if res <= 0 or res >= 2147483647:
print("Resolutions have to be in the range of 0 < R > 2147483647!")
print("Resolutions have to be in the range between 0 and 2147483647!")
exit(1)
sizes = args.resolution
files = []