Commit 3c812e73 authored by nimrod's avatar nimrod
Browse files

Compatibility with Python 3.6.

parent f855b0ef
Loading
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -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.")