From d2b0a400050cfd3a120aeb1960a63c54bb567ee6 Mon Sep 17 00:00:00 2001 From: eliott Date: Thu, 17 Apr 2008 00:59:32 -0700 Subject: fixed comment wording --- main/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/models.py b/main/models.py index 3d73215..d4250f3 100644 --- a/main/models.py +++ b/main/models.py @@ -204,7 +204,7 @@ class Package(models.Model): ).order_by('depname') for req in requiredby: reqs.append((req.pkg.id,req.pkg.pkgname)) - ## sort the resultant array. Django has problems in the orm with + ## sort the resultant list. Django has problems in the orm with ## trying to shoehorn the sorting into the reverse foreign key ## reference in the query above. :( reqs.sort(lambda a,b: cmp(a[1],b[1])) -- cgit v1.2.3-24-g4f1b