Loading mnpw/nagios.py +3 −2 Original line number Diff line number Diff line Loading @@ -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.") Loading Loading
mnpw/nagios.py +3 −2 Original line number Diff line number Diff line Loading @@ -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.") Loading