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 /packages/views.py | |
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 'packages/views.py')
-rw-r--r-- | packages/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/views.py b/packages/views.py index 37f5a207..6f05cb8f 100644 --- a/packages/views.py +++ b/packages/views.py @@ -18,8 +18,8 @@ import string from main.models import Package, PackageFile from main.models import Arch, Repo, Signoff -from main.models import MirrorUrl from main.utils import make_choice +from mirrors.models import MirrorUrl from .models import PackageRelation from .utils import get_group_info, get_differences_info |