mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
flame: adding pathsep instead of ";"
This commit is contained in:
parent
384edda56f
commit
95be2c3bc8
1 changed files with 1 additions and 1 deletions
|
|
@ -85,7 +85,7 @@ class FlamePrelaunch(PreLaunchHook):
|
|||
pythonpath = self.launch_context.env.get("PYTHONPATH")
|
||||
|
||||
# separate it explicity by `;` that is what we use in settings
|
||||
new_pythonpath = self.flame_pythonpath.split(";")
|
||||
new_pythonpath = self.flame_pythonpath.split(os.pathsep)
|
||||
new_pythonpath += pythonpath.split(os.pathsep)
|
||||
|
||||
self.launch_context.env["PYTHONPATH"] = os.pathsep.join(new_pythonpath)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue