summaryrefslogtreecommitdiffstats
path: root/public
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2010-09-06 12:01:46 -0500
committerDan McGee <dan@archlinux.org>2010-09-06 12:01:46 -0500
commit7dba848eaf12f7b5274b04a1d5aff38bc42a1d55 (patch)
tree1e90c292fedeb3cbfdf75e16893f03c9821721eb /public
parentfae66679318dbd3f5be2f96747e79676a0795fe6 (diff)
downloadarchweb-7dba848eaf12f7b5274b04a1d5aff38bc42a1d55.tar.gz
archweb-7dba848eaf12f7b5274b04a1d5aff38bc42a1d55.zip
Move mirror models out of main app
South actually makes this relatively painless if you get everything right, so might as well start getting these out of the legacy main application to eventually eliminate models being separate from their views. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'public')
-rw-r--r--public/views.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/public/views.py b/public/views.py
index f1d08a23..96c75d61 100644
--- a/public/views.py
+++ b/public/views.py
@@ -1,5 +1,5 @@
-from main.models import Arch, Donor, MirrorUrl, News
-from main.models import Repo
+from main.models import Arch, Repo, Donor, News
+from mirrors.models import MirrorUrl
from . import utils
from django.contrib.auth.models import User