summaryrefslogtreecommitdiffstats
path: root/sitemaps.py
diff options
context:
space:
mode:
Diffstat (limited to 'sitemaps.py')
-rw-r--r--sitemaps.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/sitemaps.py b/sitemaps.py
index 0388627..110c588 100644
--- a/sitemaps.py
+++ b/sitemaps.py
@@ -14,7 +14,8 @@ class PackagesSitemap(Sitemap):
def items(self):
return Package.objects.normal().filter(repo__staging=False).only(
- 'pkgname', 'last_update', 'repo__name', 'arch__name').order_by()
+ 'pkgname', 'last_update', 'files_last_update',
+ 'repo__name', 'arch__name').order_by()
def lastmod(self, obj):
return obj.last_update