From 29dc381ce0fae7b5356a78228c7aad1c352fbda5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andr=C3=A9=20Lemburg?= Date: Fri, 16 Jun 2000 17:05:57 +0000 Subject: Michael Hudson : The error message refers to "append", yet the operation in question is "concat". --- Objects/tupleobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/tupleobject.c b/Objects/tupleobject.c index 451e794..f89fa36 100644 --- a/Objects/tupleobject.c +++ b/Objects/tupleobject.c @@ -362,7 +362,7 @@ tupleconcat(a, bb) PyTupleObject *np; if (!PyTuple_Check(bb)) { PyErr_Format(PyExc_TypeError, - "can only append tuple (not \"%.200s\") to tuple", + "can only concatenate tuple (not \"%.200s\") to tuple", bb->ob_type->tp_name); return NULL; } -- cgit v0.12