Work around unprintable exception messages.
This commit is contained in:
parent
d2d7a7ea57
commit
52593f93b4
1 changed files with 1 additions and 1 deletions
2
dosage
2
dosage
|
@ -150,7 +150,7 @@ def saveComicStrip(strip, basepath, dryrun):
|
||||||
if saved:
|
if saved:
|
||||||
allskipped = False
|
allskipped = False
|
||||||
except Exception as msg:
|
except Exception as msg:
|
||||||
out.exception('Could not save image at %s to %s: %s' % (image.referrer, image.filename, msg))
|
out.exception('Could not save image at %s to %s: %r' % (image.referrer, image.filename, msg))
|
||||||
errors += 1
|
errors += 1
|
||||||
return errors, allskipped
|
return errors, allskipped
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue