mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 05:14:40 +01:00
fix last commit draft code
This commit is contained in:
parent
07e67a14b7
commit
262d179e15
1 changed files with 5 additions and 2 deletions
|
|
@ -190,9 +190,12 @@ class InstallPySideToBlender(PreLaunchHook):
|
|||
process.communicate()
|
||||
return process.returncode == 0
|
||||
except PermissionError:
|
||||
self.log.warning("Permission denied with command: \"{}\".".format(" ".join(args)))
|
||||
self.log.warning(
|
||||
"Permission denied with command:"
|
||||
"\"{}\".".format(" ".join(args))
|
||||
)
|
||||
except OSError as error:
|
||||
self.log.warning("OS error has occurred with command: \"{error}\".")
|
||||
self.log.warning(f"OS error has occurred: \"{error}\".")
|
||||
except subprocess.SubprocessError:
|
||||
pass
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue