Skip to content
Snippets Groups Projects
Commit 6d23f215 authored by Timo Koch's avatar Timo Koch Committed by Dennis Gläser
Browse files

[doxygen][md-filter] use subprocess check_output

parent d83f2372
No related branches found
No related tags found
Loading
...@@ -20,7 +20,7 @@ def _add_header_label(line: str) -> str: ...@@ -20,7 +20,7 @@ def _add_header_label(line: str) -> str:
def _invoke_and_retrieve_output(cmd) -> str: def _invoke_and_retrieve_output(cmd) -> str:
return subprocess.run(cmd, capture_output=True, text=True).stdout return subprocess.check_output(cmd, text=True)
if __name__ == "__main__": if __name__ == "__main__":
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment