From 0ae27c7e9e2a51563f4d480c1382e53a0ae3cdde Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Ku=C5=BE=C3=ADlek?= Date: Thu, 14 May 2020 17:09:50 +0200 Subject: [PATCH] Last msg de-debug --- yadc/bp/post.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yadc/bp/post.py b/yadc/bp/post.py index be85603..d8fcbdf 100644 --- a/yadc/bp/post.py +++ b/yadc/bp/post.py @@ -104,7 +104,7 @@ def post_show(id): @login_required def comment(): form = CommentForm(request.form) - flash(str(request.form)) + #flash(str(request.form)) if form.validate(): if form.create.data: el = Comment(content=form.content.data.strip(), post_id=form.post_id.data, user=current_user)