At the following line:
|
critical('the file {job.url} could not be found or was unparsable') |
a critical error is raised. The argument to critical is a string containing
{job.url} identical to the message in the Exception on the line below. Although the Exception string is an f-string, so
{job.url} is replaced with the name of the file, that is not the case in the critical error, and the error message is literally
the file {job.url} could not be found or was unparsable.
At the following line:
ebookmaker/src/ebookmaker/EbookMaker.py
Line 214 in 343db12
a critical error is raised. The argument to critical is a string containing
{job.url}identical to the message in the Exception on the line below. Although the Exception string is an f-string, so{job.url}is replaced with the name of the file, that is not the case in the critical error, and the error message is literallythe file {job.url} could not be found or was unparsable.