Skip to content

Commit

Permalink
Update config.py
Browse files Browse the repository at this point in the history
  • Loading branch information
michplunkett committed Aug 3, 2023
1 parent 2eb7464 commit dcbe2bf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion OpenOversight/app/models/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
KEY_ENV_PROD,
KEY_ENV_TESTING,
KEY_OFFICERS_PER_PAGE,
KEY_OO_MAIL_SUBJECT_PREFIX,
KEY_TIMEZONE,
MEGABYTE,
)
Expand Down Expand Up @@ -44,7 +45,7 @@ def __init__(self):

# Mail Settings
self.OO_MAIL_SUBJECT_PREFIX = os.environ.get(
"OO_MAIL_SUBJECT_PREFIX", "[OpenOversight]"
KEY_OO_MAIL_SUBJECT_PREFIX, "[OpenOversight]"
)
self.OO_SERVICE_EMAIL = os.environ.get("OO_SERVICE_EMAIL")
# TODO: Remove the default once we are able to update the production .env file
Expand Down

0 comments on commit dcbe2bf

Please sign in to comment.