diff options
| author | Andi Albrecht <albrecht.andi@gmail.com> | 2012-11-12 14:40:07 +0100 |
|---|---|---|
| committer | Andi Albrecht <albrecht.andi@gmail.com> | 2012-11-12 14:40:07 +0100 |
| commit | dcab30c6387265dcbcbedfa2d515917ffc88d036 (patch) | |
| tree | e3c03e7c8014d3770c3b68952c2c912367bf8235 /sqlparse/lexer.py | |
| parent | 9ef2a8e6080cfbe699aba0cad968c6e0d2554aa7 (diff) | |
| parent | f4876322e7fe36923d4eb89757a844b3d90be306 (diff) | |
| download | sqlparse-dcab30c6387265dcbcbedfa2d515917ffc88d036.tar.gz | |
Merge branch 'work'
Diffstat (limited to 'sqlparse/lexer.py')
| -rw-r--r-- | sqlparse/lexer.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sqlparse/lexer.py b/sqlparse/lexer.py index 432eb1e..09631da 100644 --- a/sqlparse/lexer.py +++ b/sqlparse/lexer.py @@ -18,6 +18,7 @@ from sqlparse import tokens from sqlparse.keywords import KEYWORDS, KEYWORDS_COMMON from cStringIO import StringIO + class include(str): pass @@ -158,7 +159,7 @@ class Lexer(object): stripall = False stripnl = False tabsize = 0 - flags = re.IGNORECASE|re.UNICODE + flags = re.IGNORECASE | re.UNICODE bufsize = 4096 tokens = { |
