Print stacktrace on image errors.
This commit is contained in:
parent
1a7dfc02d2
commit
ec33276fd7
1 changed files with 1 additions and 1 deletions
|
@ -131,7 +131,7 @@ class _BasicScraper(object):
|
||||||
yield self.getComicStrip(url, data, baseUrl)
|
yield self.getComicStrip(url, data, baseUrl)
|
||||||
except ValueError as msg:
|
except ValueError as msg:
|
||||||
# image not found
|
# image not found
|
||||||
out.error(msg)
|
out.exception(msg)
|
||||||
if self.firstStripUrl == url:
|
if self.firstStripUrl == url:
|
||||||
out.debug("Stop at first URL %s" % url)
|
out.debug("Stop at first URL %s" % url)
|
||||||
self.hitFirstStripUrl = True
|
self.hitFirstStripUrl = True
|
||||||
|
|
Loading…
Reference in a new issue