summaryrefslogtreecommitdiff
path: root/sqlparse/engine/statement_splitter.py
diff options
context:
space:
mode:
Diffstat (limited to 'sqlparse/engine/statement_splitter.py')
-rw-r--r--sqlparse/engine/statement_splitter.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sqlparse/engine/statement_splitter.py b/sqlparse/engine/statement_splitter.py
index d610b5e..444b46a 100644
--- a/sqlparse/engine/statement_splitter.py
+++ b/sqlparse/engine/statement_splitter.py
@@ -65,8 +65,8 @@ class StatementSplitter(object):
self._begin_depth = max(0, self._begin_depth - 1)
return -1
- if (unified in ('IF', 'FOR', 'WHILE') and
- self._is_create and self._begin_depth > 0):
+ if (unified in ('IF', 'FOR', 'WHILE')
+ and self._is_create and self._begin_depth > 0):
return 1
if unified in ('END IF', 'END FOR', 'END WHILE'):