diff --git a/views.py b/views.py index d5b5a41..20a3b0e 100644 --- a/views.py +++ b/views.py @@ -546,7 +546,7 @@ def add_comment(request, post_id, parent_id): the_comment = the_comment.replace('>', '>') comment = Comment(post=post, parent=parentComment, date=datetime.now(), author=request.POST['author'],\ - email=request.POST['email'], the_comment=the_comment], ip=ip) + email=request.POST['email'], the_comment=the_comment, ip=ip) comment.save() engine = globals()['post']