diff options
| author | Andreas Albrecht <a.albrecht@Mac-PU08.prounix.local> | 2019-10-20 17:51:02 +0200 |
|---|---|---|
| committer | Andreas Albrecht <a.albrecht@Mac-PU08.prounix.local> | 2019-10-20 17:51:02 +0200 |
| commit | b8b65c52db6e4ffda18dbce3d4752696b99149a0 (patch) | |
| tree | 0f6de4b2e1f5e9a2885161034be9bbb753d3482a /sqlparse/engine/statement_splitter.py | |
| parent | 9433666c8c3df8b23f17d7b46d91fd1b9d922b77 (diff) | |
| download | sqlparse-b8b65c52db6e4ffda18dbce3d4752696b99149a0.tar.gz | |
Code cleanup.
Diffstat (limited to 'sqlparse/engine/statement_splitter.py')
| -rw-r--r-- | sqlparse/engine/statement_splitter.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sqlparse/engine/statement_splitter.py b/sqlparse/engine/statement_splitter.py index 6c4be8e..1e9af3c 100644 --- a/sqlparse/engine/statement_splitter.py +++ b/sqlparse/engine/statement_splitter.py @@ -33,7 +33,7 @@ class StatementSplitter(object): return 1 elif ttype is T.Punctuation and value == ')': return -1 - elif ttype not in T.Keyword: # if normal token return + elif ttype not in T.Keyword: # if normal token return return 0 # Everything after here is ttype = T.Keyword |
