mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
Avoid double space in log message
This commit is contained in:
parent
6698166954
commit
871bf194da
1 changed files with 2 additions and 2 deletions
|
|
@ -103,10 +103,10 @@ class CollectComment(
|
|||
|
||||
instance.data["comment"] = instance_comment
|
||||
if instance_comment:
|
||||
msg_end = " has comment set to: \"{}\"".format(
|
||||
msg_end = "has comment set to: \"{}\"".format(
|
||||
instance_comment)
|
||||
else:
|
||||
msg_end = " does not have set comment"
|
||||
msg_end = "does not have set comment"
|
||||
self.log.debug("Instance {} {}".format(instance_label, msg_end))
|
||||
|
||||
def cleanup_comment(self, comment):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue