summaryrefslogtreecommitdiff
path: root/sqlparse/lexer.py
diff options
context:
space:
mode:
authorAndi Albrecht <albrecht.andi@gmail.com>2015-10-26 20:14:18 +0100
committerAndi Albrecht <albrecht.andi@gmail.com>2015-10-26 20:14:18 +0100
commit1992f6deff983f7a3332142da5c49e82544bd1ac (patch)
treed76351e66f2502257bf81bdbefcf4fb6fa9c01fe /sqlparse/lexer.py
parentf7e07b7b61be4befd5eaafce93aeb0238c884315 (diff)
downloadsqlparse-1992f6deff983f7a3332142da5c49e82544bd1ac.tar.gz
Cleanup module code.
Diffstat (limited to 'sqlparse/lexer.py')
-rw-r--r--sqlparse/lexer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sqlparse/lexer.py b/sqlparse/lexer.py
index b4eb604..d0f8e3b 100644
--- a/sqlparse/lexer.py
+++ b/sqlparse/lexer.py
@@ -123,7 +123,7 @@ class LexerMeta(type):
for state in tdef2:
assert (state in unprocessed or
state in ('#pop', '#push')), \
- 'unknown new state ' + state
+ 'unknown new state ' + state
new_state = tdef2
else:
assert False, 'unknown new state def %r' % tdef2