build path when skipping archived files

fixes bug from 8124c16a
This commit is contained in:
Mike Fährmann
2022-11-09 10:33:09 +01:00
parent 171262c1b6
commit e326029355

View File

@@ -218,6 +218,8 @@ class PathFormat():
if self.path[-1] == ".": if self.path[-1] == ".":
self.path = self.path[:-1] self.path = self.path[:-1]
self.temppath = self.realpath = self.realpath[:-1] self.temppath = self.realpath = self.realpath[:-1]
elif not self.path:
self.build_path()
return True return True
def build_filename(self, kwdict): def build_filename(self, kwdict):