removed some debug output
This commit is contained in:
parent
7ddd4b7fb7
commit
70305a5e3c
@ -57,7 +57,6 @@ def check_and_insert_new_comment(name):
|
|||||||
if not is_valid_json(new_comment) or \
|
if not is_valid_json(new_comment) or \
|
||||||
len(new_comment['content']) < 40 or \
|
len(new_comment['content']) < 40 or \
|
||||||
len(new_comment['email']) < 5:
|
len(new_comment['email']) < 5:
|
||||||
print("too short", file=stderr)
|
|
||||||
return make_response(jsonify(status='post-invalid-json'), 400)
|
return make_response(jsonify(status='post-invalid-json'), 400)
|
||||||
|
|
||||||
# Strip any HTML from message body
|
# Strip any HTML from message body
|
||||||
@ -208,7 +207,6 @@ def check_deletion_link(name, email_hash):
|
|||||||
if comment:
|
if comment:
|
||||||
location = db.session.query(TLocation).filter(TLocation.id_location == comment.location_id).first()
|
location = db.session.query(TLocation).filter(TLocation.id_location == comment.location_id).first()
|
||||||
if compare_digest(comment.deletion, email_hash):
|
if compare_digest(comment.deletion, email_hash):
|
||||||
print("True")
|
|
||||||
db.session.delete(comment)
|
db.session.delete(comment)
|
||||||
db.session.commit()
|
db.session.commit()
|
||||||
url = f"{project.blogurl}?deleted=true"
|
url = f"{project.blogurl}?deleted=true"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user