Fix log format

This commit is contained in:
Yax 2015-09-20 12:39:09 +02:00
parent b9722ffd47
commit 2b08f01e8f
2 changed files with 4 additions and 4 deletions

View file

@ -121,7 +121,7 @@ def report():
def accept_comment():
try:
id = request.args.get('comment', 0)
id = request.args.get('comment', '')
secret = request.args.get('secret', '')
if secret != config.SECRET:
@ -141,7 +141,7 @@ def accept_comment():
def reject_comment():
try:
id = request.args.get('comment', 0)
id = request.args.get('comment', '')
secret = request.args.get('secret', '')
if secret != config.SECRET: