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 /feeds.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 'feeds.py')
-rw-r--r-- | feeds.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2,7 +2,7 @@ import datetime from django.contrib.syndication.feeds import Feed, FeedDoesNotExist from django.db.models import Q -from archweb.main.models import Arch, Repo, Package, News +from main.models import Arch, Repo, Package, News class PackageFeed(Feed): def get_object(self, bits): |