summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Python/symtable.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/symtable.c b/Python/symtable.c
index 423679e..23f0184 100644
--- a/Python/symtable.c
+++ b/Python/symtable.c
@@ -492,7 +492,7 @@ check_unoptimized(const PySTEntryObject* ste) {
case OPT_IMPORT_STAR:
PyOS_snprintf(buf, sizeof(buf),
"import * is not allowed in function '%.100s' "
- "because it is %s",
+ "because it %s",
PyString_AS_STRING(ste->ste_name), trailer);
break;
case OPT_BARE_EXEC: