From ee5729dbf978c9d1ee78974b84be9cd02a2bc117 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Fri, 18 Jul 2014 16:25:13 -0700 Subject: add missing 'because' (closes #22008) Patch from A Kaptur. --- Python/symtable.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/symtable.c b/Python/symtable.c index 99f4191..8d4b0d3 100644 --- a/Python/symtable.c +++ b/Python/symtable.c @@ -504,7 +504,7 @@ check_unoptimized(const PySTEntryObject* ste) { case OPT_BARE_EXEC: PyOS_snprintf(buf, sizeof(buf), "unqualified exec is not allowed in function " - "'%.100s' it %s", + "'%.100s' because it %s", PyString_AS_STRING(ste->ste_name), trailer); break; default: -- cgit v0.12