diff options
| author | Brian Rosner <brosner@gmail.com> | 2008-07-18 22:37:13 +0000 |
|---|---|---|
| committer | Brian Rosner <brosner@gmail.com> | 2008-07-18 22:37:13 +0000 |
| commit | aaff207f81b716f1807a7184bab95ebfb36062db (patch) | |
| tree | d981d73b40758af1c0fb3a8f24478c7658326f6d /django/contrib/comments/admin.py | |
| parent | 66893002f306cd35d0ddbd840a16d927acbac3ec (diff) | |
newforms-admin: Fixed #7819 -- Added missing imports to contrib admin.py modules from [7953]. Thanks rajeshdhawan for catching this.
git-svn-id: http://code.djangoproject.com/svn/django/branches/newforms-admin@7957 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/contrib/comments/admin.py')
| -rw-r--r-- | django/contrib/comments/admin.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/django/contrib/comments/admin.py b/django/contrib/comments/admin.py index 67c5613a29..81ecc699c7 100644 --- a/django/contrib/comments/admin.py +++ b/django/contrib/comments/admin.py @@ -1,5 +1,6 @@ - from django.contrib import admin +from django.contrib.comments.models import Comment, FreeComment + class CommentAdmin(admin.ModelAdmin): fieldsets = ( |
