Skip to content

Commit

Permalink
Merge pull request #15 from doozr/master
Browse files Browse the repository at this point in the history
Remove stray B from parse list
  • Loading branch information
hajimes authored Oct 31, 2017
2 parents 7be2f45 + 82f96cd commit ef1c131
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mmh3module.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ mmh3_hash_bytes(PyObject *self, PyObject *args, PyObject *keywds)
static char *kwlist[] = {(char *)"key", (char *)"seed",
(char *)"x64arch", NULL};

if (!PyArg_ParseTupleAndKeywords(args, keywds, "s#|IBB", kwlist,
if (!PyArg_ParseTupleAndKeywords(args, keywds, "s#|IB", kwlist,
&target_str, &target_str_len, &seed, &x64arch)) {
return NULL;
}
Expand Down

0 comments on commit ef1c131

Please sign in to comment.