Skip to content

Commit bcf6bde

Browse files
authored
Update Lib/tokenize.py
1 parent e81810d commit bcf6bde

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Lib/tokenize.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -518,8 +518,8 @@ def error(message, filename=None, location=None):
518518
if args.exact:
519519
token_type = token.exact_type
520520
token_range = "%d,%d-%d,%d:" % (token.start + token.end)
521-
print("%-20s%-15s%-15r%-15r" %
522-
(token_range, tok_name[token_type], token.string, token.line))
521+
print("%-20s%-15s%-15r" %
522+
(token_range, tok_name[token_type], token.string))
523523
except IndentationError as err:
524524
line, column = err.args[1][1:3]
525525
error(err.args[0], filename, (line, column))

0 commit comments

Comments
 (0)