Skip to content
Snippets Groups Projects
Commit 3c812e73 authored by nimrod's avatar nimrod
Browse files

Compatibility with Python 3.6.

parent f855b0ef
No related branches found
No related tags found
No related merge requests found
Pipeline #1933 passed
......@@ -69,10 +69,11 @@ class Check:
self.Command,
]
+ self.Arguments,
capture_output=True,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
check=False,
text=True,
timeout=timeout,
universal_newlines=True,
)
except FileNotFoundError:
raise RuntimeError(f"Command {self.Command} not found.")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment