Fix log format
This commit is contained in:
parent
5f97260b7b
commit
c461c5fa49
2 changed files with 4 additions and 4 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue