summaryrefslogtreecommitdiff
path: root/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'urls.py')
-rw-r--r--urls.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/urls.py b/urls.py
index eb64d93..bfdb5ce 100644
--- a/urls.py
+++ b/urls.py
@@ -1,6 +1,6 @@
# This also imports the include function
from django.conf.urls.defaults import *
-urlpatterns = patterns('changepw.views',
- (r'^$', 'change_password'),
+urlpatterns = patterns('apps.changepw.views',
+ url(r'^/$', 'change_password', name='changepw'),
)