Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
Change ADMINS setting to list of tuples
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeljcollinsuk committed Sep 14, 2021
1 parent c80b745 commit b5a86c7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions webapp_settings/production.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
},
}

# A tuple of tuples containing (Full name, email address)
ADMINS = (
# A list of tuples containing (Full name, email address)
ADMINS = [
('YNR Prod Developers', '[email protected]')
)
]

CELERY_BROKER_URL = "redis://localhost:6379/0"

Expand Down

0 comments on commit b5a86c7

Please sign in to comment.