You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Means if the project_folder is set to a symlink, this gets undone upon initialisation, which seems to cause problems generating relative paths because drives are different
Might be better to change to path.absolute(), although not sure if there was a good reason to use resolve() in the first place.
dirty workaround is:
# project.pyfrompathlibimportPathproject=Project(HIERARCHY, project_folder='P:/PhD')
project.project_folder=Path('P:/PhD') # explicitly set again, before launch
The text was updated successfully, but these errors were encountered:
This line
Means if the project_folder is set to a symlink, this gets undone upon initialisation, which seems to cause problems generating relative paths because drives are different
Might be better to change to
path.absolute()
, although not sure if there was a good reason to useresolve()
in the first place.dirty workaround is:
The text was updated successfully, but these errors were encountered: