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/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'testapp/exam/forms.py') diff --git a/testapp/exam/forms.py b/testapp/exam/forms.py index 9bfedbe..f04fdb3 100644 --- a/testapp/exam/forms.py +++ b/testapp/exam/forms.py @@ -1,5 +1,5 @@ from django import forms -from exam.models import Profile, Quiz, Question +from testapp.exam.models import Profile, Quiz, Question from django.contrib.auth import authenticate from django.contrib.auth.models import User -- cgit