Merge pull request #1 from armisael/patch-1

allow for extra parameters in new_project
This commit is contained in:
Davide Setti 2014-08-12 11:36:37 +02:00
commit 101a226a4f
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
# POST is broken at the moment, so we send it in the URL
new_style_options = {
new_style_options = dict(opts, **{
'encoding': s(encoding),
}
})
params = {
'options': json.dumps(new_style_options),
}