summaryrefslogtreecommitdiff
path: root/sqlparse/engine/__init__.py
diff options
context:
space:
mode:
authorAndi Albrecht <albrecht.andi@gmail.com>2009-06-11 21:11:57 +0200
committerAndi Albrecht <albrecht.andi@gmail.com>2009-06-11 21:11:57 +0200
commit050e2e6b3b2f41f30c2a4037fd3fb059131d771d (patch)
treeafc82008dcdc91c560b3af2aabca3b863271bfbd /sqlparse/engine/__init__.py
parent45c1f595ea61dee891b6f4b5b6c4692df6423bb4 (diff)
downloadsqlparse-050e2e6b3b2f41f30c2a4037fd3fb059131d771d.tar.gz
pep8'ified the code a bit.
Diffstat (limited to 'sqlparse/engine/__init__.py')
-rw-r--r--sqlparse/engine/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sqlparse/engine/__init__.py b/sqlparse/engine/__init__.py
index 055025e..02f84c6 100644
--- a/sqlparse/engine/__init__.py
+++ b/sqlparse/engine/__init__.py
@@ -40,8 +40,8 @@ class FilterStack(object):
stream = lexer.tokenize(sql)
# Process token stream
if self.preprocess:
- for filter_ in self.preprocess:
- stream = filter_.process(self, stream)
+ for filter_ in self.preprocess:
+ stream = filter_.process(self, stream)
if (self.stmtprocess or self.postprocess or self.split_statements
or self._grouping):