From de371c2371aea2cbaaaa30cb14435641b3426613 Mon Sep 17 00:00:00 2001 From: "Ira W. Snyder" Date: Tue, 6 May 2014 18:06:26 -0700 Subject: [PATCH] PAR2Set/ZIP: fix output directory It is unclear when or why this was changed. I'm sure it fixed a bug which was noticed at some point. --- PAR2Set/ZIP.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PAR2Set/ZIP.py b/PAR2Set/ZIP.py index 75c8169..86257c9 100644 --- a/PAR2Set/ZIP.py +++ b/PAR2Set/ZIP.py @@ -63,7 +63,7 @@ class ZIP(Base): files = utils.findMatches(regex, self.allFiles) for f in files: - utils.runCommand(['unzip', f], todir) + utils.runCommand(['unzip', f], self.directory) ############################################################################ -- 2.25.1