Fixed syntax error.

This commit is contained in:
Sjoerd Mullender 2001-02-09 16:34:24 +00:00
parent 13b3ba4df3
commit 62f1a23ade
1 changed files with 1 additions and 1 deletions

View File

@ -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: