Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 62f1a23

Browse files
Fixed syntax error.
1 parent 13b3ba4 commit 62f1a23

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/lib-old/grep.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def pgrep(pat, *files):
5858
def showline(filename, lineno, line, prog):
5959
if line[-1:] == '\n': line = line[:-1]
6060
if opt_show_lineno:
61-
prefix = `lineno`.rjust(, 3) + ': '
61+
prefix = `lineno`.rjust(3) + ': '
6262
else:
6363
prefix = ''
6464
if opt_show_filename:

0 commit comments

Comments
 (0)