honzakral/django-threadedcomments

Unexpected keyword argument 'site_id' with get_comment_create_data

Closed this issue · 1 comments

Recent update of django-contrib-comments added site_id keyword argument to get_comment_create_data(django/django-contrib-comments@1ab69cb).

django-threadedcomments's get_comment_create_data may be changed to:

def get_comment_create_data(self, **kwargs):
    d = super(ThreadedCommentForm, self).get_comment_create_data(**kwargs)
    ...

Fixed in f0fd6e3! Thanks for reporting