From 374f14c28c1ccbde60ba798d2d2f23a8e3d534a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Sun, 13 Nov 2022 19:34:59 +0100 Subject: [PATCH] fix repeating paths for skipped files (#3203) fixing the fix from e3260293 --- gallery_dl/path.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gallery_dl/path.py b/gallery_dl/path.py index ea3cfb8d..e901fb92 100644 --- a/gallery_dl/path.py +++ b/gallery_dl/path.py @@ -218,7 +218,7 @@ class PathFormat(): if self.path[-1] == ".": self.path = self.path[:-1] self.temppath = self.realpath = self.realpath[:-1] - elif not self.path: + elif not self.temppath: self.build_path() return True