diff options
author | ankitjavalkar | 2016-06-10 16:53:17 +0530 |
---|---|---|
committer | ankitjavalkar | 2016-07-08 12:36:46 +0530 |
commit | 5e54ec5bbdcb79224d29226cfbbf852e3c3d7339 (patch) | |
tree | 2c231f165f184460d294acaf4eca3eda720d0ee8 /yaksh/urls.py | |
parent | 4cd9882c2e0e294b86e447e769bea6f66f69ff28 (diff) | |
download | online_test-5e54ec5bbdcb79224d29226cfbbf852e3c3d7339.tar.gz online_test-5e54ec5bbdcb79224d29226cfbbf852e3c3d7339.tar.bz2 online_test-5e54ec5bbdcb79224d29226cfbbf852e3c3d7339.zip |
Fix Django versions in travis.yml and minor test errors
Diffstat (limited to 'yaksh/urls.py')
-rw-r--r-- | yaksh/urls.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yaksh/urls.py b/yaksh/urls.py index fa1713c..7a41f95 100644 --- a/yaksh/urls.py +++ b/yaksh/urls.py @@ -4,7 +4,7 @@ from django.contrib.auth.views import password_reset, password_reset_confirm,\ password_reset_done, password_reset_complete, password_change,\ password_change_done -app_name = 'yaksh' +# app_name = 'yaksh' urlpatterns = [ url(r'^forgotpassword/$', password_reset, name="password_reset"), url(r'^password_reset/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$', |