diff options
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 |