Skip to content
This repository has been archived by the owner on Jul 11, 2023. It is now read-only.

Commit

Permalink
Improved error message formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
roll committed Sep 8, 2017
1 parent f1118f2 commit 94f2ff2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions goodtables/checks/type_or_format_error.py
Expand Up @@ -37,8 +37,8 @@ def type_or_format_error(errors, cells, row_number):
value='"%s"' % cell['value'],
row_number=row_number,
column_number=cell['number'],
field_type=cell['field'].type,
field_format=cell['field'].format)
field_type='"%s"' % cell['field'].type,
field_format='"%s"' % cell['field'].format)
errors.append({
'code': 'type-or-format-error',
'message': message,
Expand Down

0 comments on commit 94f2ff2

Please sign in to comment.