Commit a073e337 authored by Amaury Forgeot d'Arc's avatar Amaury Forgeot d'Arc

Correct a typo during previous checkin.

parent a4db6862
......@@ -296,7 +296,7 @@ do_mkvalue(const char **p_format, va_list *p_va, int flags)
int i = va_arg(*p_va, int);
if (i < 0 || i > PyUnicode_GetMax()) {
PyErr_SetString(PyExc_OverflowError,
"%c arg not in range(0x110000)";
"%c arg not in range(0x110000)");
return NULL;
}
return PyUnicode_FromOrdinal(i);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment