mirror of
https://github.com/Faraphel/Atlas-Install.git
synced 2025-07-04 03:38:26 +02:00
forgot a flag in a subprocess
This commit is contained in:
parent
7bc00089cc
commit
ff8214a165
1 changed files with 2 additions and 1 deletions
|
@ -90,7 +90,8 @@ def patch_bmg(self, gamefile): # gamefile est le fichier .szs trouvé dans le /
|
|||
subprocess.call(["./tools/szs/wszst", "EXTRACT", gamefile, "-d", gamefile + ".d", "--overwrite"]
|
||||
, creationflags=CREATE_NO_WINDOW)
|
||||
|
||||
bmgtracks = subprocess.check_output(["wbmgt", "CAT", gamefile + ".d/message/Common.bmg"])
|
||||
bmgtracks = subprocess.check_output(["wbmgt", "CAT", gamefile + ".d/message/Common.bmg"],
|
||||
creationflags=CREATE_NO_WINDOW)
|
||||
bmgtracks = bmgtracks.decode()
|
||||
trackheader = "#--- standard track names"
|
||||
trackend = "2328"
|
||||
|
|
Loading…
Reference in a new issue