diff options
-rw-r--r-- | Lib/lib-old/grep.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/lib-old/grep.py b/Lib/lib-old/grep.py index 6f66081..bdefbe6 100644 --- a/Lib/lib-old/grep.py +++ b/Lib/lib-old/grep.py @@ -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: |