diff options
author | Hardik Ghaghada | 2013-04-24 00:09:55 +0530 |
---|---|---|
committer | Hardik Ghaghada | 2013-04-24 00:09:55 +0530 |
commit | a89aff61b6bab0859c9f81142aa6be5d0ccc8ba1 (patch) | |
tree | 6ec4f8e01886c5b82bf70d4e3cbdd5a3d1469dfc /testapp/exam/models.py | |
parent | 0890351ba31dfe3904ff0f064ce9316405473cd3 (diff) | |
download | online_test-a89aff61b6bab0859c9f81142aa6be5d0ccc8ba1.tar.gz online_test-a89aff61b6bab0859c9f81142aa6be5d0ccc8ba1.tar.bz2 online_test-a89aff61b6bab0859c9f81142aa6be5d0ccc8ba1.zip |
80 Cols per line, corrected indentation in files & implemented DRY
Diffstat (limited to 'testapp/exam/models.py')
-rw-r--r-- | testapp/exam/models.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/testapp/exam/models.py b/testapp/exam/models.py index 708c7af..00d32e4 100644 --- a/testapp/exam/models.py +++ b/testapp/exam/models.py @@ -1,7 +1,8 @@ import datetime from django.db import models from django.contrib.auth.models import User -from taggit_autocomplete_modified.managers import TaggableManagerAutocomplete as TaggableManager +from taggit_autocomplete_modified.managers import TaggableManagerAutocomplete\ +as TaggableManager from django.http import HttpResponse ################################################################################ class Profile(models.Model): |