From b93e1985fbfb25a4b15dcac78057492141a9ed9c Mon Sep 17 00:00:00 2001
From: John Jarvis <jarv@edx.org>
Date: Thu, 1 Aug 2013 12:50:23 -0400
Subject: [PATCH] changing default ADMINS to an empty tuple

https://docs.djangoproject.com/en/dev/ref/settings/#std:setting-ADMINS
https://docs.djangoproject.com/en/dev/howto/error-reporting/
---
 cms/envs/common.py | 4 +---
 lms/envs/common.py | 6 ++----
 2 files changed, 3 insertions(+), 7 deletions(-)

diff --git a/cms/envs/common.py b/cms/envs/common.py
index f5b74c326b3..515f2dd1dfe 100644
--- a/cms/envs/common.py
+++ b/cms/envs/common.py
@@ -176,9 +176,7 @@ EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'
 DEFAULT_FROM_EMAIL = 'registration@edx.org'
 DEFAULT_FEEDBACK_EMAIL = 'feedback@edx.org'
 SERVER_EMAIL = 'devops@edx.org'
-ADMINS = (
-    ('edX Admins', 'admin@edx.org'),
-)
+ADMINS = ()
 MANAGERS = ADMINS
 
 # Static content
diff --git a/lms/envs/common.py b/lms/envs/common.py
index 6c64cf1d902..324069b6d61 100644
--- a/lms/envs/common.py
+++ b/lms/envs/common.py
@@ -72,7 +72,7 @@ MITX_FEATURES = {
     'ENABLE_TEXTBOOK': True,
     'ENABLE_DISCUSSION_SERVICE': True,
     # discussion home panel, which includes a subscription on/off setting for discussion digest emails.
-    # this should remain off in production until digest notifications are online. 
+    # this should remain off in production until digest notifications are online.
     'ENABLE_DISCUSSION_HOME_PANEL': False,
 
     'ENABLE_PSYCHOMETRICS': False,  # real-time psychometrics (eg item response theory analysis in instructor dashboard)
@@ -355,9 +355,7 @@ SERVER_EMAIL = 'devops@edx.org'
 TECH_SUPPORT_EMAIL = 'technical@edx.org'
 CONTACT_EMAIL = 'info@edx.org'
 BUGS_EMAIL = 'bugs@edx.org'
-ADMINS = (
-    ('edX Admins', 'admin@edx.org'),
-)
+ADMINS = ()
 MANAGERS = ADMINS
 
 # Static content
-- 
GitLab