diff options
author | Dan McGee <dan@archlinux.org> | 2010-09-06 12:01:46 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-09-06 12:01:46 -0500 |
commit | 7dba848eaf12f7b5274b04a1d5aff38bc42a1d55 (patch) | |
tree | 1e90c292fedeb3cbfdf75e16893f03c9821721eb /public | |
parent | fae66679318dbd3f5be2f96747e79676a0795fe6 (diff) |
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.py | 4 |
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 |