From f6dcf8c83bb225b3b06e2096fae236132bd56460 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 22 Aug 2010 12:25:42 +0200 Subject: Fix empty pattern in ps lexer. --- scripts/find_error.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts') 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[:]) -- cgit v1.2.1