summaryrefslogtreecommitdiffstats
path: root/main/models.py
diff options
context:
space:
mode:
authorFelix Yan <felixonmars@archlinux.org>2018-06-09 11:44:39 +0800
committerGitHub <noreply@github.com>2018-06-09 11:44:39 +0800
commitd76861c6eac5b0dd3fd648d166e718b82d4995ac (patch)
tree2176c97cfa7b9586ac25a5fe3ebfb24b038ab3b7 /main/models.py
parent7b9f414e94a35aa9da8123916a23aa45869f143a (diff)
downloadarchweb-d76861c6eac5b0dd3fd648d166e718b82d4995ac.tar.gz
archweb-d76861c6eac5b0dd3fd648d166e718b82d4995ac.zip
models.py: correct a typo
Diffstat (limited to 'main/models.py')
-rw-r--r--main/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/models.py b/main/models.py
index 9fe4b1fa..b34758b5 100644
--- a/main/models.py
+++ b/main/models.py
@@ -218,7 +218,7 @@ class Package(models.Model):
new_rqd = []
for dep in requiredby:
if not dep.comparison or not dep.version:
- # no comparisson/version, so always let it through
+ # no comparison/version, so always let it through
new_rqd.append(dep)
elif self.pkgname == dep.name:
# depends on this package, so check it directly