From 8b015c7e851a1ea990a7fe358d5209d2621fdead Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9gory=20Soutad=C3=A9?= Date: Tue, 23 Oct 2012 19:03:10 +0200 Subject: [PATCH] Syntax error --- views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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']