summaryrefslogtreecommitdiffstats
path: root/devel/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'devel/utils.py')
-rw-r--r--devel/utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/utils.py b/devel/utils.py
index 6bc52c8..d7a154a 100644
--- a/devel/utils.py
+++ b/devel/utils.py
@@ -32,8 +32,8 @@ SELECT pr.user_id, COUNT(*), COUNT(p.flag_date)
pkg_count[k] = total
flag_count[k] = flagged
- update_count = Package.objects.values_list('packager').annotate(
- Count('packager'))
+ update_count = Package.objects.values_list('packager').order_by(
+ 'packager').annotate(Count('packager'))
update_count = dict(update_count)
for m in maintainers: