Prevent mutual exclusive exception
This commit is contained in:
parent
813222073e
commit
0ba632a2a6
1 changed files with 2 additions and 2 deletions
|
|
@ -55,8 +55,8 @@ EMAIL_PORT = os.environ.get("EMAIL_PORT", 25)
|
|||
EMAIL_HOST_USER = os.environ.get("EMAIL_HOST_USER", "")
|
||||
EMAIL_HOST_PASSWORD = os.environ.get("EMAIL_HOST_PASSWORD", "")
|
||||
|
||||
EMAIL_USE_TLS = os.environ.get("EMAIL_USE_TLS", False)
|
||||
EMAIL_USE_SSL = os.environ.get("EMAIL_USE_SSL", False)
|
||||
EMAIL_USE_TLS = bool(os.environ.get("EMAIL_USE_TLS"))
|
||||
EMAIL_USE_SSL = bool(os.environ.get("EMAIL_USE_SSL"))
|
||||
|
||||
# Reddit integration
|
||||
REDDIT_CLIENT_ID = os.environ.get("REDDIT_CLIENT_ID", "")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue