summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-07-04 21:34:47 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-07-04 21:34:47 (GMT)
commita073e33746ba6842850d1aa7833fcfaf1d1e74b7 (patch)
tree37daf309d9178ef2337599f45e50e541358331f1 /Python
parenta4db68622c585e1bb526ef89f5d5ccf602906110 (diff)
downloadcpython-a073e33746ba6842850d1aa7833fcfaf1d1e74b7.zip
cpython-a073e33746ba6842850d1aa7833fcfaf1d1e74b7.tar.gz
cpython-a073e33746ba6842850d1aa7833fcfaf1d1e74b7.tar.bz2
Correct a typo during previous checkin.
Diffstat (limited to 'Python')
-rw-r--r--Python/modsupport.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/modsupport.c b/Python/modsupport.c
index e39c315..2531d0d 100644
--- a/Python/modsupport.c
+++ b/Python/modsupport.c
@@ -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);