Skip to content

Commit fdec444

Browse files
committed
Fix PyInstaller 6 issue
1 parent e524d0e commit fdec444

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cli/repack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -555,7 +555,7 @@ def analysis(self):
555555
self.patch_specfile(specfile, hookscript, resfile)
556556

557557
cmdlist = self.pyicmd + ['--clean', '--workpath', self.workpath]
558-
cmdlist.extend(self.pyiopts)
558+
cmdlist.extend(self.filter_opts(self.pyiopts, exvalues, exopts))
559559
cmdlist.append(specfile)
560560
logger.debug('%s', ' '.join(cmdlist))
561561
logger.info('call PyInstaller to analysis, '

0 commit comments

Comments
 (0)