aboutsummaryrefslogtreecommitdiff
path: root/config.py
diff options
context:
space:
mode:
authorGertjan van den Burg <gertjanvandenburg@gmail.com>2020-12-03 18:07:50 +0000
committerGertjan van den Burg <gertjanvandenburg@gmail.com>2020-12-03 18:07:50 +0000
commita160abeb3230c6ecb887d0b77f655203d5cf2313 (patch)
treede4347a905c67476dd0a9c85d1c2f052f18ed446 /config.py
parentFix urls in readme (diff)
parentminor docs updates (diff)
downloadAnnotateChange-a160abeb3230c6ecb887d0b77f655203d5cf2313.tar.gz
AnnotateChange-a160abeb3230c6ecb887d0b77f655203d5cf2313.zip
Merge branch 'update'
Diffstat (limited to 'config.py')
-rw-r--r--config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.py b/config.py
index 163a8ae..8065832 100644
--- a/config.py
+++ b/config.py
@@ -43,7 +43,7 @@ class Config(object):
MAIL_PASSWORD = os.environ.get("MAIL_PASSWORD")
ADMINS = [
x.strip()
- for x in os.environ.get("ADMIN_EMAILS").split(";")
+ for x in os.environ.get("ADMIN_EMAILS", "").split(";")
if x.strip()
]