From d2f182749f968686e15bb3336c8eda3e7026200a Mon Sep 17 00:00:00 2001 From: raphael60650 Date: Wed, 16 Jun 2021 16:32:19 +0200 Subject: [PATCH] forgot s to creationflags --- source/install_mod.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/install_mod.py b/source/install_mod.py index 2397b8f..1e0a0eb 100644 --- a/source/install_mod.py +++ b/source/install_mod.py @@ -113,8 +113,8 @@ def install_mod(self): self.path_mkwf_format = os.path.realpath(self.path_mkwf + "/../MKWFaraphel." + outputformat.lower()) subprocess.run(["./tools/wit/wit", "COPY", get_nodir(self.path_mkwf), "--DEST", get_nodir(self.path_mkwf_format), f"--{outputformat.lower()}", "--overwrite"], - creationflag=CREATE_NO_WINDOW, cwd=get_dir(self.path_mkwf), - check=True, stdout=subprocess.PIPE) + creationflags=CREATE_NO_WINDOW, cwd=get_dir(self.path_mkwf), + check=True, stdout=subprocess.PIPE) shutil.rmtree(self.path_mkwf) self.Progress(statut=self.translate("Changement de l'ID du jeu"), add=1)