Skip to content

Commit

Permalink
Fix: Wrong error message format
Browse files Browse the repository at this point in the history
  • Loading branch information
a-ma72 committed Aug 27, 2022
1 parent cedd8c9 commit 007bc8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/src/rfcnt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ int parse_rfc_kwargs( PyObject* kwargs, Py_ssize_t len, Rainflow *rf, Rainflow::
}
else
{
PyErr_Format( PyExc_RuntimeError, "Wrong key used in wl dict: %O", key );
PyErr_Format( PyExc_RuntimeError, "Wrong key used in wl dict: `%S`", key );
return 0;
}
}
Expand Down

0 comments on commit 007bc8f

Please sign in to comment.