diff mbox

[1/3] settings: Move DEFAULT_FROM_EMAIL to the core settings section

Message ID 1443437913-20260-2-git-send-email-damien.lespiau@intel.com
State Superseded
Headers show

Commit Message

Damien Lespiau Sept. 28, 2015, 10:58 a.m. UTC
DEFAULT_FROM_EMAIL is actually a django setting, not a patchwork one.

v2: Capitalize the 'E' of 'Email' (Stephen Finucane)

Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
Acked-by: Stephen Finucane <stephen.finucane@intel.com>
---
 patchwork/settings/base.py | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
diff mbox

Patch

diff --git a/patchwork/settings/base.py b/patchwork/settings/base.py
index d00245d..89d30c9 100644
--- a/patchwork/settings/base.py
+++ b/patchwork/settings/base.py
@@ -64,6 +64,9 @@  TEMPLATE_DIRS = (
     os.path.join(ROOT_DIR, 'templates'),
 )
 
+# Email
+
+DEFAULT_FROM_EMAIL = 'Patchwork <patchwork@patchwork.example.com>'
 
 #
 # Auth settings
@@ -99,7 +102,6 @@  STATICFILES_DIRS = [
 #
 
 DEFAULT_PATCHES_PER_PAGE = 100
-DEFAULT_FROM_EMAIL = 'Patchwork <patchwork@patchwork.example.com>'
 
 CONFIRMATION_VALIDITY_DAYS = 7