allow for extra parameters in new_project

This commit is contained in:
Stefano Parmesan 2014-08-12 11:34:17 +02:00
parent 9bd8102b0a
commit 2d94ac4e36
1 changed files with 2 additions and 2 deletions

View File

@ -234,9 +234,9 @@ class Refine:
# the new APIs requires a json in the 'option' POST or GET argument # the new APIs requires a json in the 'option' POST or GET argument
# POST is broken at the moment, so we send it in the URL # POST is broken at the moment, so we send it in the URL
new_style_options = { new_style_options = dict(opts, **{
'encoding': s(encoding), 'encoding': s(encoding),
} })
params = { params = {
'options': json.dumps(new_style_options), 'options': json.dumps(new_style_options),
} }