Skip to content

Commit

Permalink
fix missing space in error message
Browse files Browse the repository at this point in the history
e.g. 'errors': [u'project_name or project_idis required']
  • Loading branch information
ihodes committed Jun 2, 2015
1 parent 03f97c7 commit 4639e97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cycledash/validations.py
Expand Up @@ -16,7 +16,7 @@ def expect_one_of(dct, *args):
error_string = '{}'.format(args[0])
for arg in args[1:]:
error_string += ' or {}'.format(arg)
error_string += 'is required'
error_string += ' is required'
error = Invalid(error_string)
raise MultipleInvalid(errors=[error])

Expand Down

0 comments on commit 4639e97

Please sign in to comment.