diff options
author | prathamesh | 2014-07-11 13:42:35 +0530 |
---|---|---|
committer | prathamesh | 2014-07-11 13:42:35 +0530 |
commit | e89f0b0e3a74195b3bce0f68c337ead9dc18a11e (patch) | |
tree | c01172875e05c2baf59223ac7c19d2cd4d51a5e6 /testapp/exam/urls.py | |
parent | d8a162ce5484dcdcb47ab0f01cc55ab4495bcc06 (diff) | |
download | online_test-e89f0b0e3a74195b3bce0f68c337ead9dc18a11e.tar.gz online_test-e89f0b0e3a74195b3bce0f68c337ead9dc18a11e.tar.bz2 online_test-e89f0b0e3a74195b3bce0f68c337ead9dc18a11e.zip |
Exam app using django 1.6.5
Removed version specification to install latest
version of django.
Added settings.py to the exam app.
Removed default from import statement in urls.py
since it is deprecated.
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 b659cf6..37a031d 100644 --- a/testapp/exam/urls.py +++ b/testapp/exam/urls.py @@ -1,4 +1,4 @@ -from django.conf.urls.defaults import patterns, include, url +from django.conf.urls import patterns, include, url urlpatterns = patterns('exam.views', url(r'^$', 'index'), |