mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Fixed syntax error.
This commit is contained in:
parent
13b3ba4df3
commit
62f1a23ade
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ def pgrep(pat, *files):
|
|||
def showline(filename, lineno, line, prog):
|
||||
if line[-1:] == '\n': line = line[:-1]
|
||||
if opt_show_lineno:
|
||||
prefix = `lineno`.rjust(, 3) + ': '
|
||||
prefix = `lineno`.rjust(3) + ': '
|
||||
else:
|
||||
prefix = ''
|
||||
if opt_show_filename:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue