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/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/urls.py')
-rw-r--r-- | testapp/urls.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testapp/urls.py b/testapp/urls.py index c82ecb6..0d126f4 100644 --- a/testapp/urls.py +++ b/testapp/urls.py @@ -1,4 +1,4 @@ -from django.conf.urls.defaults import patterns, include, url +from django.conf.urls import patterns, include, url # Uncomment the next two lines to enable the admin: from django.contrib import admin |