diff --git a/source/wszst/bmg.py b/source/wszst/bmg.py index 9a3b3e6..e98f1df 100644 --- a/source/wszst/bmg.py +++ b/source/wszst/bmg.py @@ -19,4 +19,4 @@ def cat(path: str, subfile: str = ".d/message/Common.bmg") -> str: """ return subprocess.run(["./tools/szs/wbmgt", "CAT", path + subfile], creationflags=subprocess.CREATE_NO_WINDOW, - check=True, stdout=subprocess.PIPE).stdout.decode() \ No newline at end of file + check=True, stdout=subprocess.PIPE, stderr=subprocess.DEVNULL).stdout.decode()