summaryrefslogtreecommitdiff
path: root/devel/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'devel/utils.py')
-rw-r--r--devel/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/devel/utils.py b/devel/utils.py
index 3326987a..e745c7a9 100644
--- a/devel/utils.py
+++ b/devel/utils.py
@@ -78,7 +78,7 @@ class UserFinder(object):
def username_email(name, email):
if email and '@' in email:
# split email addr at '@' symbol, ensure domain matches
- # or is a subdomain of archlinux.org
+ # or is a subdomain of parabola.nu
username, domain = email.split('@', 1)
if re.match(settings.DOMAIN_RE, domain):
return User.objects.get(username=username)