Commit 00d6f1c6 by Calen Pennington

Use python3 dictionary iteration

parent 47cffaad
...@@ -26,5 +26,5 @@ DB_OVERRIDES = dict( ...@@ -26,5 +26,5 @@ DB_OVERRIDES = dict(
PORT=environ.get('DB_MIGRATION_PORT', DATABASES['default']['PORT']), PORT=environ.get('DB_MIGRATION_PORT', DATABASES['default']['PORT']),
) )
for override, value in DB_OVERRIDES.iteritems(): for override, value in DB_OVERRIDES.items():
DATABASES['default'][override] = value DATABASES['default'][override] = value
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