[damned-lies] Fix authentification typo
- From: Claude Paroz <claudep src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [damned-lies] Fix authentification typo
- Date: Mon, 8 Feb 2021 08:17:28 +0000 (UTC)
commit 642f060d76c39e4bb349d0e770fddb409a657417
Author: Piotr Drąg <piotrdrag gmail com>
Date: Sun Feb 7 11:53:30 2021 +0100
Fix authentification typo
people/migrations/0007_person_auth_token.py | 2 +-
people/models.py | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/people/migrations/0007_person_auth_token.py b/people/migrations/0007_person_auth_token.py
index 452b09e3..e90af768 100644
--- a/people/migrations/0007_person_auth_token.py
+++ b/people/migrations/0007_person_auth_token.py
@@ -11,6 +11,6 @@ class Migration(migrations.Migration):
migrations.AddField(
model_name='person',
name='auth_token',
- field=models.CharField(blank=True, max_length=40, verbose_name='Authentification Token'),
+ field=models.CharField(blank=True, max_length=40, verbose_name='Authentication Token'),
),
]
diff --git a/people/models.py b/people/models.py
index ccb19f54..60e02239 100644
--- a/people/models.py
+++ b/people/models.py
@@ -29,7 +29,7 @@ def obfuscate_email(email):
class Person(User):
""" The User class of D-L. """
- auth_token = models.CharField(_("Authentification Token"), max_length=40, blank=True)
+ auth_token = models.CharField(_("Authentication Token"), max_length=40, blank=True)
svn_account = models.SlugField(max_length=20, null=True, blank=True)
image = models.URLField(_("Image"), null=True, blank=True,
help_text=_("URL to an image file (.jpg, .png, …) of an hackergotchi (max.
100×100 pixels)"))
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]