summaryrefslogtreecommitdiff
path: root/Parser/parsetok.c
diff options
context:
space:
mode:
Diffstat (limited to 'Parser/parsetok.c')
-rw-r--r--Parser/parsetok.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/Parser/parsetok.c b/Parser/parsetok.c
index 1f467d63c4..00d741d221 100644
--- a/Parser/parsetok.c
+++ b/Parser/parsetok.c
@@ -246,8 +246,7 @@ parsetok(struct tok_state *tok, grammar *g, int start, perrdetail *err_ret,
else if ((ps->p_flags & CO_FUTURE_BARRY_AS_BDFL) &&
strcmp(str, "<>")) {
PyObject_FREE(str);
- err_ret->text = "with Barry as BDFL, use '<>' "
- "instead of '!='";
+ err_ret->expected = NOTEQUAL;
err_ret->error = E_SYNTAX;
break;
}