From 8abc334f9b6ab9b4285a4880fa57df5ea175ad45 Mon Sep 17 00:00:00 2001 From: prathamesh Date: Tue, 5 Aug 2014 17:35:58 +0530 Subject: changed import exam.* to testapp.exam.* So when the package is installed on a system, it will have proper path to the exam app. --- testapp/exam/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'testapp/exam/urls.py') 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'), -- cgit