summaryrefslogtreecommitdiffstats
path: root/apps/patchwork/views/patch.py
diff options
context:
space:
mode:
authorJeremy Kerr <jk@ozlabs.org>2008-08-22 10:41:25 +0800
committerJeremy Kerr <jk@ozlabs.org>2008-08-22 10:41:25 +0800
commitf1e089f7736ac8f7b9af784461350c4c169211ad (patch)
treee45453e0d1fe5695b5227249040a668bff2610c1 /apps/patchwork/views/patch.py
parent6a2a96299d4802cb4fb82891daf6f81ff33ba4e0 (diff)
downloadpatchwork-f1e089f7736ac8f7b9af784461350c4c169211ad.tar.bz2
patchwork-f1e089f7736ac8f7b9af784461350c4c169211ad.tar.xz
Use django-registration infrastructure
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'apps/patchwork/views/patch.py')
-rw-r--r--apps/patchwork/views/patch.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/patchwork/views/patch.py b/apps/patchwork/views/patch.py
index f20f25d..c0960c1 100644
--- a/apps/patchwork/views/patch.py
+++ b/apps/patchwork/views/patch.py
@@ -18,9 +18,9 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-from patchwork.models import Patch, Project, Person, RegistrationRequest, Bundle
+from patchwork.models import Patch, Project, Person, Bundle
from patchwork.filters import Filters
-from patchwork.forms import RegisterForm, LoginForm, PatchForm, MultiplePatchForm, CreateBundleForm
+from patchwork.forms import PatchForm, MultiplePatchForm, CreateBundleForm
from patchwork.utils import get_patch_ids, set_patches, Order
from patchwork.requestcontext import PatchworkRequestContext
from django.shortcuts import render_to_response, get_object_or_404