Problem with period/full stop/dot in filename #5539
-
Currently I am doing: "filename": {
"chapter_minor": "{manga}_c{chapter:>04}{chapter_minor}_{page:>03}.{extension}",
"" : "{manga}_c{chapter:>04}.0_{page:>03}.{extension}"
} I'd really like to do this instead: "filename": "{manga}_c{chapter:>04}{chapter_minor|'.0'}_{page:>03}.{extension}" Unfortunately I seem to getting |
Beta Was this translation helpful? Give feedback.
Answered by
mikf
May 2, 2024
Replies: 1 comment 3 replies
-
I think this might be conflicting with attribute access sadly... Is this a bug? |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yeah, that's what's causing this.
Using
_lit[…]
directly instead of'…'
seems to work: