From 23af972756a98410bd41472bd33ea651b5180f07 Mon Sep 17 00:00:00 2001 From: Andreas Sandberg Date: Fri, 25 Jan 2019 18:40:19 +0000 Subject: python: Replace deprecated repr syntax Change-Id: I5f9538cf2ca5ee17c51e7c5388d3aef363fcfa54 Signed-off-by: Andreas Sandberg Reviewed-on: https://gem5-review.googlesource.com/c/15989 Reviewed-by: Giacomo Travaglini --- src/python/m5/util/grammar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/python/m5/util/grammar.py') diff --git a/src/python/m5/util/grammar.py b/src/python/m5/util/grammar.py index fcd8df2c9..2d9e82cd6 100644 --- a/src/python/m5/util/grammar.py +++ b/src/python/m5/util/grammar.py @@ -134,5 +134,5 @@ class Grammar(object): def t_error(self, t): msg = "Illegal character %s @ %d:%d" % \ - (`t.value[0]`, t.lineno, t.lexpos) + (repr(t.value[0]), t.lineno, t.lexpos) raise ParseError(msg, t) -- cgit v1.2.3