forgot to re-enable error catching

pull/1/head
eric 2016-10-31 22:19:00 -04:00
parent 1c7df5e00e
commit b82b51f358
1 changed files with 2 additions and 2 deletions

View File

@ -256,9 +256,9 @@ def load_doab_records(fname, limit=None):
for (i, book) in enumerate(islice(records,limit)):
d = dict(book)
ebook = load_doab_edition(**dict(book))
success_count += 1
try:
ebook = load_doab_edition(**dict(book))
success_count += 1
if ebook:
ebook_count +=1
except Exception, e: