From 579e2bc90acc9faac14c8c32048431d873d32e4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?coadde=20=5BM=C3=A1rcio=20Alexandre=20Silva=20Delgado=5D?= Date: Mon, 4 Jul 2016 16:35:20 -0300 Subject: fix some comments --- devel/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'devel/utils.py') 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) -- cgit v1.2.3