Skip to content

Commit

Permalink
add missing %s into the log message of file application/routes/vnc.py…
Browse files Browse the repository at this point in the history
… as a fix of PR junhaoliao#29
  • Loading branch information
xx12345798 committed Jan 5, 2025
1 parent 2bcb814 commit ada79e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/routes/vnc.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def change_vncpasswd():

vnc, reason = create_connection(session_id, ConnectionType.VNC)
if reason != '':
logger.error("create_connection() failed with status=", reason)
logger.error("create_connection() failed with status=%s", reason)
abort(403, description=reason)

passwd = request.json.get('passwd')
Expand Down

0 comments on commit ada79e7

Please sign in to comment.