summaryrefslogtreecommitdiffstats
path: root/Lib/lib-old
diff options
context:
space:
mode:
authorSjoerd Mullender <sjoerd@acm.org>2001-02-09 16:34:24 (GMT)
committerSjoerd Mullender <sjoerd@acm.org>2001-02-09 16:34:24 (GMT)
commit62f1a23ade8d9cddc064026cb4b95131f66de2ef (patch)
tree30554070cb43202d9d9208118d24967c8b543980 /Lib/lib-old
parent13b3ba4df3289cecc1ca2dc8d86b52204b6798d4 (diff)
downloadcpython-62f1a23ade8d9cddc064026cb4b95131f66de2ef.zip
cpython-62f1a23ade8d9cddc064026cb4b95131f66de2ef.tar.gz
cpython-62f1a23ade8d9cddc064026cb4b95131f66de2ef.tar.bz2
Fixed syntax error.
Diffstat (limited to 'Lib/lib-old')
-rw-r--r--Lib/lib-old/grep.py2
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: