diff options
author | Trupti Rajesh Kini | 2016-10-25 15:22:44 +0530 |
---|---|---|
committer | GitHub | 2016-10-25 15:22:44 +0530 |
commit | efe99ed44bdd8a2568862967577d7ccea41024d5 (patch) | |
tree | 4c26ad501f9387e3d16c389603ae1432bd2c64fd /comments/admin.py | |
parent | 6da84d8c334e16ebea6597d8b83d51552935ed00 (diff) | |
parent | 27d47a26dd9c7765bbfda112eddbebe8f3679460 (diff) | |
download | Python-TBC-Interface-efe99ed44bdd8a2568862967577d7ccea41024d5.tar.gz Python-TBC-Interface-efe99ed44bdd8a2568862967577d7ccea41024d5.tar.bz2 Python-TBC-Interface-efe99ed44bdd8a2568862967577d7ccea41024d5.zip |
Merge pull request #41 from kinitrupti/master
Upgraded to python3
Diffstat (limited to 'comments/admin.py')
-rw-r--r-- | comments/admin.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/comments/admin.py b/comments/admin.py index 6ac89ae..17f2113 100644 --- a/comments/admin.py +++ b/comments/admin.py @@ -1,4 +1,4 @@ -from models import * +from .models import * from django.contrib import admin admin.site.register(Comment) |