summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelix Yan <felixonmars@archlinux.org>2018-04-23 08:09:14 +0800
committerGitHub <noreply@github.com>2018-04-23 08:09:14 +0800
commit99b119deec127ba7fd854cc16d5c2d16d4a10610 (patch)
tree206fbcab1d63de24569398dbf91f792e3cfe44cc
parentdad8fa4a842d6e140cb6c31799d01b04bd063b26 (diff)
downloadarchweb-99b119deec127ba7fd854cc16d5c2d16d4a10610.tar.gz
archweb-99b119deec127ba7fd854cc16d5c2d16d4a10610.zip
Fix a typo
-rw-r--r--packages/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/utils.py b/packages/utils.py
index 6a9376bc..86612d21 100644
--- a/packages/utils.py
+++ b/packages/utils.py
@@ -37,7 +37,7 @@ def get_group_info(include_arches=None):
raw_groups = PackageGroup.objects.values_list(
'name', 'pkg__arch__name').order_by('name').annotate(
cnt=Count('pkg'), last_update=Max('pkg__last_update'))
- # now for post_processing. we need to seperate things out and add
+ # now for post_processing. we need to separate things out and add
# the count in for 'any' to all of the other architectures.
group_mapping = {}
for grp in raw_groups: