Skip to content

Commit

Permalink
Improving debug in case of failure
Browse files Browse the repository at this point in the history
  • Loading branch information
glenrobson committed Jun 4, 2022
1 parent ddd6ac8 commit d1c14c9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion iiif-presentation-validator.py
Expand Up @@ -112,7 +112,8 @@ def check_manifest(self, data, version, url=None, warnings=[]):
okay = 1
except Exception as e:
# Failed
print (e)
print ('Failed falidation due to:')
traceback.print_exc()
err = e
okay = 0

Expand Down

0 comments on commit d1c14c9

Please sign in to comment.