summaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
authorFelix Yan <felixonmars@archlinux.org>2019-01-30 03:01:50 +0800
committerFelix Yan <felixonmars@archlinux.org>2019-01-30 03:01:50 +0800
commit632dff662ec85028bb3c157bae3d45efb23e6682 (patch)
tree27f76df352bccf149cf3aa81f93ac7647ff6d94a /main
parent5895b2a2216d6b3a6103dc5f90e8d26bd29791df (diff)
downloadarchweb-632dff662ec85028bb3c157bae3d45efb23e6682.tar.gz
archweb-632dff662ec85028bb3c157bae3d45efb23e6682.zip
Fix a typo in donor_import.py
Diffstat (limited to 'main')
-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):