diff options
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 = { |
