From 20e72130c4054bb59aa3fe514522065003b0ed89 Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Thu, 13 Jun 2002 21:25:17 +0000 Subject: Fix typo in exception message --- Objects/unicodeobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index cd081ad..ae27b7f 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -5132,7 +5132,7 @@ unicode_buffer_getwritebuf(PyUnicodeObject *self, int index, const void **ptr) { PyErr_SetString(PyExc_TypeError, - "cannot use unicode as modifyable buffer"); + "cannot use unicode as modifiable buffer"); return -1; } -- cgit v0.12