from django.contrib.comments.forms import CommentForm
from django import forms
class CustomCommentForm(CommentForm):
def __init__(self,*a,**b):
super(CommentForm, self).__init__(*a,**b)
def save(self, req):
from django.contrib.comments.views.comments import post_comment
post_comment(req,"/")
Caught an exception while rendering: ‘Item’ object has no attribute ‘get’
Если убрать свой кастомный init все в порядке, подскажите в чем проблема, и как объявить свой конструктор чтобы не было исключения?