Compare commits

...

2 Commits

Author SHA1 Message Date
12beea05a7 Merge branch '2022.12' into #148 2022-12-23 16:35:24 +01:00
713fa5243c Fixed publisher service 2022-12-23 16:09:28 +01:00

View File

@ -64,7 +64,7 @@ class PublisherService(PublisherABC):
:return:
"""
if self._src_path_part in file:
file = file.replace(self._src_path_part, '', 1)
file = file.split(self._src_path_part)[1].replace(self._src_path_part, '', 1)
dirs = os.path.dirname(file).split(self._path_mark)
for d in dirs: