mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
Tweak grammar
This commit is contained in:
parent
4ffccc8ecf
commit
fe0978a8b2
1 changed files with 5 additions and 4 deletions
|
|
@ -1012,8 +1012,8 @@ class ApplicationLaunchContext:
|
||||||
self.log.debug("Discovery of launch hooks started.")
|
self.log.debug("Discovery of launch hooks started.")
|
||||||
|
|
||||||
paths = self.paths_to_launch_hooks()
|
paths = self.paths_to_launch_hooks()
|
||||||
self.log.debug("Paths where will look for launch hooks:{}".format(
|
self.log.debug("Paths searched for launch hooks:\n{}".format(
|
||||||
"\n- ".join(paths)
|
"\n".join("- {}".format(path) for path in paths)
|
||||||
))
|
))
|
||||||
|
|
||||||
all_classes = {
|
all_classes = {
|
||||||
|
|
@ -1023,7 +1023,7 @@ class ApplicationLaunchContext:
|
||||||
for path in paths:
|
for path in paths:
|
||||||
if not os.path.exists(path):
|
if not os.path.exists(path):
|
||||||
self.log.info(
|
self.log.info(
|
||||||
"Path to launch hooks does not exists: \"{}\"".format(path)
|
"Path to launch hooks does not exist: \"{}\"".format(path)
|
||||||
)
|
)
|
||||||
continue
|
continue
|
||||||
|
|
||||||
|
|
@ -1044,7 +1044,8 @@ class ApplicationLaunchContext:
|
||||||
hook = klass(self)
|
hook = klass(self)
|
||||||
if not hook.is_valid:
|
if not hook.is_valid:
|
||||||
self.log.debug(
|
self.log.debug(
|
||||||
"Hook is not valid for current launch context."
|
"Hook is not valid for current "
|
||||||
|
"launch context: {}".format(str(hook))
|
||||||
)
|
)
|
||||||
continue
|
continue
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue