aboutsummaryrefslogtreecommitdiffstats
path: root/gallery_dl/postprocessor
diff options
context:
space:
mode:
authorLibravatarUnit 193 <unit193@ubuntu.com>2019-08-31 19:59:37 -0400
committerLibravatarUnit 193 <unit193@ubuntu.com>2019-08-31 19:59:37 -0400
commit379042e103b9b6d6070ad88482ad2c253b7e34ec (patch)
treeef373f430ccb6619ade92015fc4c684fa73cdcb1 /gallery_dl/postprocessor
parentd6824e1498ef82fcb384c316bd960f45f4c21c28 (diff)
parent01b2d06c57d52b2c6f241b1beb0e377ee3a8b2a6 (diff)
Update upstream source from tag 'upstream/1.10.3'
Update to upstream version '1.10.3' with Debian dir a7b2d1bdee89a6ee13fd7067356d8df7ad3b143a
Diffstat (limited to 'gallery_dl/postprocessor')
-rw-r--r--gallery_dl/postprocessor/zip.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gallery_dl/postprocessor/zip.py b/gallery_dl/postprocessor/zip.py
index 1075c70..6659a8d 100644
--- a/gallery_dl/postprocessor/zip.py
+++ b/gallery_dl/postprocessor/zip.py
@@ -34,7 +34,7 @@ class ZipPP(PostProcessor):
algorithm = "store"
self.path = pathfmt.realdirectory
- args = (self.path + ext, "a",
+ args = (self.path[:-1] + ext, "a",
self.COMPRESSION_ALGORITHMS[algorithm], True)
if options.get("mode") == "safe":