summaryrefslogtreecommitdiff
path: root/alembic/templates
diff options
context:
space:
mode:
authorPeter Marsh <pete.d.marsh@gmail.com>2017-09-24 16:35:20 +0100
committerPeter Marsh <pete.d.marsh@gmail.com>2017-09-24 16:39:30 +0100
commit529cd45dbd6c78a4bd64f1b99a7b7bd6544564a7 (patch)
tree7d50d79cee8d9a38203e05d3217402964e5c4abe /alembic/templates
parent8b7ae0412825331588afdf7e40b19dbdd54aa6ea (diff)
downloadalembic-529cd45dbd6c78a4bd64f1b99a7b7bd6544564a7.tar.gz
Fix flake8 E265 violation in multidb env.py template
flake8 detected the following violation in env.py for multidb projects: multidb/env.py:34:1: E265 block comment should start with '# ' #} ^ This fixes the violation in the template, so fresh multidb projects will no longer have this violation.
Diffstat (limited to 'alembic/templates')
-rw-r--r--alembic/templates/multidb/env.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/alembic/templates/multidb/env.py b/alembic/templates/multidb/env.py
index 453b41c..db24173 100644
--- a/alembic/templates/multidb/env.py
+++ b/alembic/templates/multidb/env.py
@@ -31,7 +31,7 @@ db_names = config.get_main_option('databases')
# target_metadata = {
# 'engine1':mymodel.metadata1,
# 'engine2':mymodel.metadata2
-#}
+# }
target_metadata = {}
# other values from the config, defined by the needs of env.py,