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 /news/views.py | |
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 'news/views.py')
-rw-r--r-- | news/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/news/views.py b/news/views.py index 2f960674..7aa78c46 100644 --- a/news/views.py +++ b/news/views.py @@ -1,6 +1,6 @@ from django import forms from django.contrib.auth.decorators import permission_required -from archweb.main.models import News +from main.models import News from django.views.generic import list_detail, create_update |