diff --git a/openpype/plugins/publish/validate_editorial_asset_name.py b/openpype/plugins/publish/validate_editorial_asset_name.py index 6548b8ea89..60b8f76a07 100644 --- a/openpype/plugins/publish/validate_editorial_asset_name.py +++ b/openpype/plugins/publish/validate_editorial_asset_name.py @@ -6,7 +6,8 @@ from pprint import pformat class ValidateEditorialAssetName(pyblish.api.ContextPlugin): """ Validating if editorial's asset names are not already created in db. - Checking variations of names with different size of caps or with or without underscores. + Checking variations of names with different size of caps or with + or without underscores. """ order = pyblish.api.ValidatorOrder @@ -72,8 +73,6 @@ class ValidateEditorialAssetName(pyblish.api.ContextPlugin): "Some already existing asset name variants `{}`".format( wrong_names)) - - if assets_wrong_parent: self.log.debug( ">> assets_wrong_parent: {}".format(assets_wrong_parent))