summaryrefslogtreecommitdiff
path: root/devel/forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'devel/forms.py')
-rw-r--r--devel/forms.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/devel/forms.py b/devel/forms.py
index e2b1a7a2..d953c614 100644
--- a/devel/forms.py
+++ b/devel/forms.py
@@ -3,6 +3,7 @@ from collections import OrderedDict
from string import ascii_letters, digits
from django import forms
+from django.conf import settings
from django.contrib.auth.models import User, Group
from django.contrib.sites.models import Site
from django.core.mail import send_mail
@@ -96,7 +97,7 @@ class NewUserForm(forms.ModelForm):
send_mail("Your new archweb account",
template.render(ctx),
- 'Arch Website Notification <nobody@archlinux.org>',
+ settings.BRANDING_EMAIL,
[user.email],
fail_silently=False)