summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-08-22 12:25:42 +0200
committerGeorg Brandl <georg@python.org>2010-08-22 12:25:42 +0200
commitf6dcf8c83bb225b3b06e2096fae236132bd56460 (patch)
tree9c095297c58786cfec9a777342486e6f34f4ff72 /scripts
parent090f2376b50111e9b71f65b105bf9ace953f42ab (diff)
downloadpygments-f6dcf8c83bb225b3b06e2096fae236132bd56460.tar.gz
Fix empty pattern in ps lexer.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/find_error.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/find_error.py b/scripts/find_error.py
index 6b82fcd2..cb22ae89 100755
--- a/scripts/find_error.py
+++ b/scripts/find_error.py
@@ -133,7 +133,7 @@ def main(fn, lexer=None):
print
print
return 1
- tokens.append((type,val))
+ tokens.append((type, val))
if debug_lexer:
if hasattr(lx, 'statestack'):
states.append(lx.statestack[:])