From 917ca76bd36cdc79ac8e9583eca16b46b83d8a7a Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Thu, 5 Nov 2020 12:07:45 +0100 Subject: [PATCH] typo fix --- pype/plugins/tvpaint/create/create_beauty.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pype/plugins/tvpaint/create/create_beauty.py b/pype/plugins/tvpaint/create/create_beauty.py index 918c18070a..43ae4232aa 100644 --- a/pype/plugins/tvpaint/create/create_beauty.py +++ b/pype/plugins/tvpaint/create/create_beauty.py @@ -48,7 +48,7 @@ class CreateBeauty(pipeline.TVPaintCreator): name = self.data["subset"] # Is this right way how to get name? name = name[len(family):] - self.log.info(f"Extracted name form subset name \"{name}\".") + self.log.info(f"Extracted name from subset name \"{name}\".") self.data["name"] = name subset_name = self.subset_template.format(**{ @@ -108,5 +108,5 @@ class CreateBeauty(pipeline.TVPaintCreator): self.log.info( f"Name of group with index {group_id}" - f" was changed to {new_group_name}." + f" was changed to \"{new_group_name}\"." )