summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Sandan <msandan@utexas.edu>2016-05-18 18:37:58 -0700
committerMark Sandan <msandan@utexas.edu>2016-05-18 18:37:58 -0700
commitba4c55e64374e5a9906a18ddf1b36f79c375eea7 (patch)
tree8344d101b8be7fbbaaced4d25f1926bbf3da4f12
parent3fca9add682a9fe97e4e5b5b8011507c878866e0 (diff)
downloadsqlalchemy-pr/275.tar.gz
fix spacingpr/275
-rw-r--r--lib/sqlalchemy/sql/compiler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/sql/compiler.py b/lib/sqlalchemy/sql/compiler.py
index 3567427a7..84c411635 100644
--- a/lib/sqlalchemy/sql/compiler.py
+++ b/lib/sqlalchemy/sql/compiler.py
@@ -2216,7 +2216,7 @@ class DDLCompiler(Compiled):
text = "\nCREATE "
if table._prefixes:
text += " ".join(table._prefixes) + " "
- text += "TABLE " + preparer.format_table(table) + " " + self.table_options(table) + " ("
+ text += "TABLE " + preparer.format_table(table) + " " + self.table_options(table) + "("
separator = "\n"