mirror of
https://github.com/Faraphel/Atlas-Install.git
synced 2025-07-03 19:28:25 +02:00
added a devnull for bmg.cat because all call were showing not useful information
This commit is contained in:
parent
2a22f57bae
commit
599c6b604f
1 changed files with 1 additions and 1 deletions
|
@ -19,4 +19,4 @@ def cat(path: str, subfile: str = ".d/message/Common.bmg") -> str:
|
||||||
"""
|
"""
|
||||||
return subprocess.run(["./tools/szs/wbmgt", "CAT", path + subfile],
|
return subprocess.run(["./tools/szs/wbmgt", "CAT", path + subfile],
|
||||||
creationflags=subprocess.CREATE_NO_WINDOW,
|
creationflags=subprocess.CREATE_NO_WINDOW,
|
||||||
check=True, stdout=subprocess.PIPE).stdout.decode()
|
check=True, stdout=subprocess.PIPE, stderr=subprocess.DEVNULL).stdout.decode()
|
||||||
|
|
Loading…
Reference in a new issue