Skip to content
Snippets Groups Projects
Commit 77024a01 authored by Wannes Rombouts's avatar Wannes Rombouts
Browse files

Fixed typo casuing error in error messages :)

parent fffaccee
No related branches found
No related tags found
No related merge requests found
......@@ -436,7 +436,7 @@ def get_data(name=None, mandatory=[], authorized=[], forbidden=[]):
data = web.data()
if not data:
raise web.badrequest('You must suply some data. (mandatory: %s, authorized: %s)' % (madatory, authorized))
raise web.badrequest('You must suply some data. (mandatory: %s, authorized: %s)' % (mandatory, authorized))
if not 'CONTENT_TYPE' in web.ctx.env:
raise web.badrequest('You must specify a Content-Type.')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment