Changeset - 7b9dd1e8b8af
[Not reviewed]
0 1 0
Christopher Neugebauer - 6 years ago 2017-09-17 19:08:46
chrisjrn@gmail.com
Fix admins format
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
pinaxcon/settings.py
Show inline comments
...
 
@@ -43,7 +43,7 @@ TIME_ZONE = os.environ.get("TZ", "America/Los_Angeles")
 
# Set the email address that will receive errors.
 
admin_email = os.environ.get("DJANGO_ADMIN_EMAIL", None)
 
if admin_email is not None:
 
    ADMINS = ("Webmaster", admin_email)
 
    ADMINS = [("Webmaster", admin_email)]
 

	
 

	
 
# Use SSLRedirectMiddleware
0 comments (0 inline, 0 general)