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 /public | |
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 'public')
-rw-r--r-- | public/utils.py | 2 | ||||
-rw-r--r-- | public/views.py | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/public/utils.py b/public/utils.py index 3a604037..a7e37323 100644 --- a/public/utils.py +++ b/public/utils.py @@ -1,4 +1,4 @@ -from archweb.main.models import Arch, Repo, Package +from main.models import Arch, Repo, Package def get_recent_updates(): # This is a bit of magic. We are going to show 15 on the front page, but we diff --git a/public/views.py b/public/views.py index 560f9bb0..79dae55c 100644 --- a/public/views.py +++ b/public/views.py @@ -1,5 +1,5 @@ -from archweb.main.models import AltForum, Arch, Donor, MirrorUrl, News -from archweb.main.models import Package, Repo, ExternalProject +from main.models import AltForum, Arch, Donor, MirrorUrl, News +from main.models import Package, Repo, ExternalProject from . import utils from django.contrib.auth.models import User |