summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2014-07-23 19:08:16 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2014-07-23 19:08:16 -0400
commit46a5f89ff4dfa79b47d4669bd1d0ec7655260d51 (patch)
tree40a927f3a7ea97de3464fd0354cb2386efb6c46a
parent6604d8f96fc4005035fb56cff82b2c4ef1852990 (diff)
downloadsqlalchemy-pr/123.tar.gz
now fix all my pep8 probs!pr/123
-rw-r--r--lib/sqlalchemy/sql/compiler.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/sqlalchemy/sql/compiler.py b/lib/sqlalchemy/sql/compiler.py
index 576056026..b3d63d2b9 100644
--- a/lib/sqlalchemy/sql/compiler.py
+++ b/lib/sqlalchemy/sql/compiler.py
@@ -200,8 +200,7 @@ class Compiled(object):
if statement is not None:
self.statement = statement
self.can_execute = statement.supports_execution
- self.string = self.process(self.statement,
- **compile_kwargs)
+ self.string = self.process(self.statement, **compile_kwargs)
@util.deprecated("0.7", ":class:`.Compiled` objects now compile "
"within the constructor.")