Merge pull request #4180 from Tilix4/fx_template_path_cross_platform

Fix: Template path wrong normpath for cross platform
This commit is contained in:
Jakub Trllo 2022-12-08 13:33:35 +01:00 committed by GitHub
commit 8d3aad3689
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -422,7 +422,7 @@ class TemplateResult(str):
cls = self.__class__
return cls(
os.path.normpath(self),
os.path.normpath(self.replace("\\", "/")),
self.template,
self.solved,
self.used_values,