fix minor bug

master
Eugen Ciur 2021-01-18 17:49:06 +01:00
parent 7ddb02dcb5
commit 4a7099a16b
1 changed files with 1 additions and 1 deletions

View File

@ -199,7 +199,7 @@ class PagePath:
fmt_num = "{num:d}"
elif self.page_count > 9 and self.page_count < 100:
fmt_num = "{num:02d}"
elif self.page_count > 100:
elif self.page_count >= 100:
fmt_num = "{num:003d}"
return fmt_num.format(