summaryrefslogtreecommitdiff
path: root/testapp/exam/admin.py
diff options
context:
space:
mode:
authorprathamesh2014-08-05 17:35:58 +0530
committerprathamesh2014-08-05 17:35:58 +0530
commit8abc334f9b6ab9b4285a4880fa57df5ea175ad45 (patch)
tree5dd01820f431df0836747b8edaf8c53171037f0d /testapp/exam/admin.py
parent009e421c7a9fce96164f820ec8cba3a6f206d567 (diff)
downloadonline_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/admin.py')
-rw-r--r--testapp/exam/admin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/testapp/exam/admin.py b/testapp/exam/admin.py
index 8482ef9..060859a 100644
--- a/testapp/exam/admin.py
+++ b/testapp/exam/admin.py
@@ -1,4 +1,4 @@
-from exam.models import Question, Quiz
+from testapp.exam.models import Question, Quiz
from django.contrib import admin
admin.site.register(Question)