Commit cd40a6d94a4ebabd98866a3f20032e424a533db6

Authored by Sergio Oliveira
1 parent a4ed62bf

Removing django-registration from requirements

Showing 2 changed files with 0 additions and 3 deletions   Show diff stats
requirements.txt
... ... @@ -7,7 +7,6 @@ pytz==2011n
7 7 chardet==1.0.1
8 8 python-dateutil==1.5
9 9 django-cliauth==0.9
10   -django-registration==1.0
11 10  
12 11 gunicorn
13 12 gevent
... ...
src/accounts/urls.py
... ... @@ -5,8 +5,6 @@ from .views import UserProfileDetailView, UserProfileUpdateView
5 5  
6 6  
7 7 urlpatterns = patterns('',
8   - #url(r'^$', 'accounts.views.signup', name='signup'),
9   -
10 8 url(r'^register/$', 'accounts.views.signup', name='signup'),
11 9  
12 10 url(r'^(?P<username>[\w@+.-]+)/?$',
... ...