diff options
Diffstat (limited to 'Lib/lib-old/grep.py')
-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 423c065..6f74fd3 100644 --- a/Lib/lib-old/grep.py +++ b/Lib/lib-old/grep.py @@ -73,7 +73,7 @@ def showline(filename, lineno, line, prog): else: prefix = ' ' * len(prefix) for c in line: - if c <> '\t': c = ' ' + if c != '\t': c = ' ' prefix = prefix + c if start == end: prefix = prefix + '\\' else: prefix = prefix + '^'*(end-start) |