diff options
author | Dan McGee <dan@archlinux.org> | 2010-02-10 00:29:27 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-02-10 00:29:27 -0600 |
commit | d7096041022f6c98358fbfd74544435cfd993d80 (patch) | |
tree | 995ff758d6ab41703b6920650a1f56acaa60770e /sitemaps.py | |
parent | c52d9649218107ed36cdc816b5d872cb030f367c (diff) |
Remove archweb prefix from all imports
Unnecessary, and lets us standardize on not using it everywhere.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'sitemaps.py')
-rw-r--r-- | sitemaps.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sitemaps.py b/sitemaps.py index aab2009d..256f7101 100644 --- a/sitemaps.py +++ b/sitemaps.py @@ -1,5 +1,5 @@ from django.contrib.sitemaps import Sitemap -from archweb.main.models import Package, News +from main.models import Package, News class PackagesSitemap(Sitemap): changefreq = "monthly" |