diff options
author | Andi Albrecht <albrecht.andi@gmail.com> | 2015-10-26 20:14:18 +0100 |
---|---|---|
committer | Andi Albrecht <albrecht.andi@gmail.com> | 2015-10-26 20:14:18 +0100 |
commit | 1992f6deff983f7a3332142da5c49e82544bd1ac (patch) | |
tree | d76351e66f2502257bf81bdbefcf4fb6fa9c01fe /sqlparse/lexer.py | |
parent | f7e07b7b61be4befd5eaafce93aeb0238c884315 (diff) | |
download | sqlparse-1992f6deff983f7a3332142da5c49e82544bd1ac.tar.gz |
Cleanup module code.
Diffstat (limited to 'sqlparse/lexer.py')
-rw-r--r-- | sqlparse/lexer.py | 2 |
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 |