summaryrefslogtreecommitdiff
path: root/sqlparse/engine/statement_splitter.py
diff options
context:
space:
mode:
authorAndreas Albrecht <a.albrecht@Mac-PU08.prounix.local>2019-10-20 17:51:02 +0200
committerAndreas Albrecht <a.albrecht@Mac-PU08.prounix.local>2019-10-20 17:51:02 +0200
commitb8b65c52db6e4ffda18dbce3d4752696b99149a0 (patch)
tree0f6de4b2e1f5e9a2885161034be9bbb753d3482a /sqlparse/engine/statement_splitter.py
parent9433666c8c3df8b23f17d7b46d91fd1b9d922b77 (diff)
downloadsqlparse-b8b65c52db6e4ffda18dbce3d4752696b99149a0.tar.gz
Code cleanup.
Diffstat (limited to 'sqlparse/engine/statement_splitter.py')
-rw-r--r--sqlparse/engine/statement_splitter.py2
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