diff options
author | prathamesh | 2014-08-05 17:35:58 +0530 |
---|---|---|
committer | prathamesh | 2014-08-05 17:35:58 +0530 |
commit | 8abc334f9b6ab9b4285a4880fa57df5ea175ad45 (patch) | |
tree | 5dd01820f431df0836747b8edaf8c53171037f0d /testapp/exam/urls.py | |
parent | 009e421c7a9fce96164f820ec8cba3a6f206d567 (diff) | |
download | online_test-8abc334f9b6ab9b4285a4880fa57df5ea175ad45.tar.gz online_test-8abc334f9b6ab9b4285a4880fa57df5ea175ad45.tar.bz2 online_test-8abc334f9b6ab9b4285a4880fa57df5ea175ad45.zip |
changed import exam.* to testapp.exam.*
So when the package is installed on a system, it will have proper path to the
exam app.
Diffstat (limited to 'testapp/exam/urls.py')
-rw-r--r-- | testapp/exam/urls.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testapp/exam/urls.py b/testapp/exam/urls.py index 37a031d..f8a6cb8 100644 --- a/testapp/exam/urls.py +++ b/testapp/exam/urls.py @@ -1,6 +1,6 @@ from django.conf.urls import patterns, include, url -urlpatterns = patterns('exam.views', +urlpatterns = patterns('testapp.exam.views', url(r'^$', 'index'), url(r'^login/$', 'user_login'), url(r'^quizzes/$','quizlist_user'), |