Normalize path returned from Workfiles.

This commit is contained in:
Toke Stuart Jepsen 2021-07-29 08:43:08 +01:00
parent f706c43bf7
commit 490ec264b3

View file

@ -693,7 +693,7 @@ class FilesWidget(QtWidgets.QWidget):
)
return
file_path = os.path.join(self.root, work_file)
file_path = os.path.join(os.path.normpath(self.root), work_file)
pipeline.emit("before.workfile.save", file_path)