diff options
-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 c6c7dde..6c4be8e 100644 --- a/sqlparse/engine/statement_splitter.py +++ b/sqlparse/engine/statement_splitter.py @@ -36,7 +36,7 @@ class StatementSplitter(object): elif ttype not in T.Keyword: # if normal token return return 0 - # Everything after here is ttype = T.Keyword or ttype = T. + # Everything after here is ttype = T.Keyword # Also to note, once entered an If statement you are done and basically # returning unified = value.upper() |