Skip to content

Commit

Permalink
fix(settings): Fix ADMINS
Browse files Browse the repository at this point in the history
  • Loading branch information
mlissner committed Apr 15, 2022
1 parent 81090d6 commit b2197f6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
10 changes: 6 additions & 4 deletions cl/settings/django.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,10 +176,12 @@
# system time zone.
TIME_ZONE = env("TIMEZONE", default="America/Los_Angeles")

ADMINS = (
env("ADMIN_NAME", default="Joe Schmoe"),
env("ADMIN_EMAIL", default="joe@courtlistener.com"),
)
ADMINS = [
(
env("ADMIN_NAME", default="Joe Schmoe"),
env("ADMIN_EMAIL", default="joe@courtlistener.com"),
)
]

MANAGERS = ADMINS

Expand Down
3 changes: 2 additions & 1 deletion docker/django/version.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
2.0.0
2.0.1

2.0.1 - Allow MEDIA_ROOT to be configurable; fix ADMINS
2.0.0 - Major overhaul of docker file in prepartion for migration to kubernetes. Merges celery and django images by tag.
1.2.2 - Add django-ses
1.2.1 - Remove PyPDF2 dependency and simplify dockerfile
Expand Down

0 comments on commit b2197f6

Please sign in to comment.