Skip to content

Commit

Permalink
[xs][logic/get] fix typo in validation error string
Browse files Browse the repository at this point in the history
  • Loading branch information
johnglover committed Mar 19, 2012
1 parent 670a3e3 commit 7882f1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ckan/logic/action/get.py
Expand Up @@ -932,7 +932,7 @@ def term_translation_show(context, data_dict):
q = select([trans_table])

if 'term' not in data_dict:
raise ValidationError({'term': 'term not it data'})
raise ValidationError({'term': 'term not in data'})

q = q.where(trans_table.c.term == data_dict['term'])

Expand Down

0 comments on commit 7882f1d

Please sign in to comment.