Kaydet (Commit) 62f1a23a authored tarafından Sjoerd Mullender's avatar Sjoerd Mullender

Fixed syntax error.

üst 13b3ba4d
...@@ -58,7 +58,7 @@ def pgrep(pat, *files): ...@@ -58,7 +58,7 @@ def pgrep(pat, *files):
def showline(filename, lineno, line, prog): def showline(filename, lineno, line, prog):
if line[-1:] == '\n': line = line[:-1] if line[-1:] == '\n': line = line[:-1]
if opt_show_lineno: if opt_show_lineno:
prefix = `lineno`.rjust(, 3) + ': ' prefix = `lineno`.rjust(3) + ': '
else: else:
prefix = '' prefix = ''
if opt_show_filename: if opt_show_filename:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment