This commit is contained in:
Thomas Scheffler 2025-12-28 18:06:45 +01:00 committed by GitHub
commit 999c539947
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -141,7 +141,7 @@ def gen_filename(parm):
return '-'.join(['label', return '-'.join(['label',
str(parm["labeltype"]), parm["prefix"], str(parm["labeltype"]), parm["prefix"],
str(parm["first_asn"]).zfill(parm["num_digits"]), str(parm["first_asn"]).zfill(parm["num_digits"]),
str(parm["first_asn"] + parm["number"]).zfill(parm["num_digits"]) str(parm["first_asn"] + parm["number"] - 1).zfill(parm["num_digits"])
])+'.pdf' ])+'.pdf'