diff options
author | Mark Sandan <msandan@utexas.edu> | 2016-05-18 18:37:58 -0700 |
---|---|---|
committer | Mark Sandan <msandan@utexas.edu> | 2016-05-18 18:37:58 -0700 |
commit | ba4c55e64374e5a9906a18ddf1b36f79c375eea7 (patch) | |
tree | 8344d101b8be7fbbaaced4d25f1926bbf3da4f12 | |
parent | 3fca9add682a9fe97e4e5b5b8011507c878866e0 (diff) | |
download | sqlalchemy-pr/275.tar.gz |
fix spacingpr/275
-rw-r--r-- | lib/sqlalchemy/sql/compiler.py | 2 |
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" |