Skip to content

Commit

Permalink
Fix ADMINS variable at bothub/settings.py
Browse files Browse the repository at this point in the history
  • Loading branch information
victor-salles committed Aug 29, 2022
1 parent dfa72ee commit 60f2d35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bothub/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@

envvar_EMAIL_HOST = env.str("EMAIL_HOST")

ADMINS = [("Helder", "helder.souza@weni.ai")] # env.list("ADMINS")
ADMINS = env.list("ADMINS")
EMAIL_SUBJECT_PREFIX = "[bothub] "
DEFAULT_FROM_EMAIL = env.str("DEFAULT_FROM_EMAIL")
SERVER_EMAIL = env.str("SERVER_EMAIL")
Expand Down

0 comments on commit 60f2d35

Please sign in to comment.