summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelix Yan <felixonmars@archlinux.org>2019-02-04 04:37:01 +0800
committerGitHub <noreply@github.com>2019-02-04 04:37:01 +0800
commite8442cb7884669dfe19a9abade2ba0f9ad334903 (patch)
tree27f76df352bccf149cf3aa81f93ac7647ff6d94a
parent5895b2a2216d6b3a6103dc5f90e8d26bd29791df (diff)
parent632dff662ec85028bb3c157bae3d45efb23e6682 (diff)
downloadarchweb-e8442cb7884669dfe19a9abade2ba0f9ad334903.tar.gz
archweb-e8442cb7884669dfe19a9abade2ba0f9ad334903.zip
Merge pull request #175 from archlinux/fix-typo
Fix a typo in donor_import.py
-rw-r--r--main/management/commands/donor_import.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/management/commands/donor_import.py b/main/management/commands/donor_import.py
index cc0e59f2..12dc0aa9 100644
--- a/main/management/commands/donor_import.py
+++ b/main/management/commands/donor_import.py
@@ -61,7 +61,7 @@ class Command(BaseCommand):
def sanitize_name(self, name):
"""Sanitizes the parsed name and removes numbers, entries with no
- valid characters and finaly trims all excess whitespace"""
+ valid characters and finally trims all excess whitespace"""
# Some submissions contain no alphabetic characters, skip them
if all(not l.isalpha() for l in name):