Skip to content

Commit

Permalink
Fix arguments format string removing spurious "p"
Browse files Browse the repository at this point in the history
  • Loading branch information
lelit committed Aug 19, 2017
1 parent 63254a8 commit 6b8edc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rapidjson.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2308,7 +2308,7 @@ encoder_new(PyTypeObject* type, PyObject* args, PyObject* kwargs)
NULL
};

if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|ppOpIOOOp:Encoder",
if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|ppOpIOOO:Encoder",
(char **) kwlist,
&skipInvalidKeys,
&ensureAscii,
Expand Down

0 comments on commit 6b8edc9

Please sign in to comment.