added a devnull for bmg.cat because all call were showing not useful information

This commit is contained in:
raphael60650 2021-07-28 20:54:21 +02:00
parent 2a22f57bae
commit 599c6b604f

View file

@ -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()