Skip to content

Commit

Permalink
Fixed jsontableschema-error message (#133)
Browse files Browse the repository at this point in the history
  • Loading branch information
roll committed Oct 13, 2016
1 parent f39b89f commit 8005944
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion goodtables/profiles/table.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def table(errors, tables, source, schema=None, **options):
for error in exception.errors:
errors.append({
'code': 'jsontableschema-error',
'message': str(error),
'message': str(error).splitlines()[0],
'row-number': None,
'column-number': None,
})
Expand Down

0 comments on commit 8005944

Please sign in to comment.