Commit d279dff9 by John Jarvis

fixing syntax

parent 442abde0
...@@ -15,7 +15,7 @@ from django.core.exceptions import ImproperlyConfigured ...@@ -15,7 +15,7 @@ from django.core.exceptions import ImproperlyConfigured
DB_OVERRIDES = dict( DB_OVERRIDES = dict(
PASSWORD=os.environ.get('DB_MIGRATION_PASS', None), PASSWORD=os.environ.get('DB_MIGRATION_PASS', None),
ENGINE=os.environ.get('DB_MIGRATION_ENGINE', DATABASES['default']['ENGINE']) ENGINE=os.environ.get('DB_MIGRATION_ENGINE', DATABASES['default']['ENGINE']),
USER=os.environ.get('DB_MIGRATION_USER', DATABASES['default']['USER']), USER=os.environ.get('DB_MIGRATION_USER', DATABASES['default']['USER']),
NAME=os.environ.get('DB_MIGRATION_NAME', DATABASES['default']['NAME']), NAME=os.environ.get('DB_MIGRATION_NAME', DATABASES['default']['NAME']),
HOST=os.environ.get('DB_MIGRATION_HOST', DATABASES['default']['HOST']), HOST=os.environ.get('DB_MIGRATION_HOST', DATABASES['default']['HOST']),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment