mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 08:24:53 +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
|
instance.data["comment"] = instance_comment
|
||||||
if instance_comment:
|
if instance_comment:
|
||||||
msg_end = " has comment set to: \"{}\"".format(
|
msg_end = "has comment set to: \"{}\"".format(
|
||||||
instance_comment)
|
instance_comment)
|
||||||
else:
|
else:
|
||||||
msg_end = " does not have set comment"
|
msg_end = "does not have set comment"
|
||||||
self.log.debug("Instance {} {}".format(instance_label, msg_end))
|
self.log.debug("Instance {} {}".format(instance_label, msg_end))
|
||||||
|
|
||||||
def cleanup_comment(self, comment):
|
def cleanup_comment(self, comment):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue