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 +- local_settings.py.example | 12 ++++++------ 2 files changed, 7 insertions(+), 7 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) diff --git a/local_settings.py.example b/local_settings.py.example index 44e38459..f5d23c89 100644 --- a/local_settings.py.example +++ b/local_settings.py.example @@ -15,9 +15,9 @@ ADMINS = ( #DATABASES = { # 'default': { # 'ENGINE' : 'django.db.backends.postgresql_psycopg2', -# 'NAME' : 'archlinux', -# 'USER' : 'archlinux', -# 'PASSWORD': 'archlinux', +# 'NAME' : 'parabola', +# 'USER' : 'parabola', +# 'PASSWORD': 'parabola', # 'HOST' : '', # 'PORT' : '', # }, @@ -27,9 +27,9 @@ ADMINS = ( #DATABASES = { # 'default': { # 'ENGINE' : 'django.db.backends.mysql', -# 'NAME' : 'archlinux', -# 'USER' : 'archlinux', -# 'PASSWORD': 'archlinux', +# 'NAME' : 'parabola', +# 'USER' : 'parabola', +# 'PASSWORD': 'parabola', # 'HOST' : '', # 'PORT' : '', # # InnoDB WILL NOT work -- cgit v1.2.3