Skip to content
Snippets Groups Projects
Commit f7627679 authored by Romin's avatar Romin :eye:
Browse files

Fix invalid request argument

parent e4f7ef0c
No related branches found
No related tags found
No related merge requests found
......@@ -615,7 +615,7 @@ class Client:
if isinstance(form, ProjectForm):
form = form.generate()
uri = self.uri("Project", "Project")
return Project(self, self.post(uri, data=form).json())
return Project(self, self.post(uri, json=form).json())
###############################################################################
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment