Skip to content

Commit 3fa2524

Browse files
author
Joe Yu
committed
Switched to format for proxy msg
To handle point 1. in #110 (comment)
1 parent 7abe6e7 commit 3fa2524

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/tk_desktop/site_communication.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def _proxy_log(self, level, msg, args):
7474
"""
7575
try:
7676
# Format first so logger.exception can use it
77-
msg = "[PROXY] %s" % msg
77+
msg = "[PROXY] {0}".format(msg)
7878
logger.log(level, msg, *args)
7979
except Exception:
8080
message = (

0 commit comments

Comments
 (0)