Skip to content

Commit

Permalink
Fix the fix
Browse files Browse the repository at this point in the history
*groan* .. caffeine.. needed..
  • Loading branch information
hmpf committed Oct 21, 2024
1 parent 2de49f7 commit 2a8c46f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/argus/site/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,5 +88,5 @@ def update_settings(current_settings, app_settings, override=False):
TEMPLATES = update_context_processors_list(TEMPLATES, app_settings)
MIDDLEWARE = update_middleware_list(MIDDLEWARE, app_settings)

for setting, value in get_settings(app_settings):
for setting, value in get_settings(app_settings).items():
current_settings[setting] = value

0 comments on commit 2a8c46f

Please sign in to comment.