Skip to content

Commit

Permalink
Switched to format for proxy msg
Browse files Browse the repository at this point in the history
To handle point 1. in shotgunsoftware#110 (comment)
  • Loading branch information
Joe Yu authored Jun 3, 2020
1 parent 249d6c4 commit 72307e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/tk_desktop/site_communication.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def _proxy_log(self, level, msg, args):
"""
try:
# Format first so logger.exception can use it
msg = "[PROXY] %s" % msg
msg = "[PROXY] {0}".format(msg)
logger.log(level, msg, *args)
except Exception:
message = (
Expand Down

0 comments on commit 72307e7

Please sign in to comment.