Commit 9ef680c4b50924d24af1633024d23742d971376f

Authored by Sergio Oliveira
1 parent 63c2135a

Fixing up imports

Showing 1 changed file with 3 additions and 3 deletions   Show diff stats
src/colab/deprecated/views/signup.py
... ... @@ -7,7 +7,7 @@ Created by Sergio Campos on 2012-01-10.
7 7 """
8 8  
9 9 import uuid
10   -from colab import signup as signup_
  10 +from colab.deprecated import signup as signup_
11 11  
12 12 from django.template import RequestContext
13 13 from django.contrib.auth.models import User
... ... @@ -16,8 +16,8 @@ from django.contrib.auth.decorators import login_required
16 16 from django.contrib.auth.forms import SetPasswordForm, PasswordChangeForm
17 17 from django.shortcuts import render_to_response, redirect, get_object_or_404
18 18  
19   -from colab.super_archives.forms import UserCreationForm
20   -from colab.super_archives.models import UserProfile, EmailAddress
  19 +from super_archives.forms import UserCreationForm
  20 +from super_archives.models import UserProfile, EmailAddress
21 21  
22 22  
23 23 def signup(request):
... ...