Skip to content
Snippets Groups Projects
Commit 828d2fa6 authored by nimrod's avatar nimrod
Browse files

Forgot the f in f-strings, corrected.

parent e682d49e
Branches
Tags
No related merge requests found
Pipeline #1998 passed
......@@ -165,9 +165,9 @@ class Check:
self.ExitCode = proc.returncode
logging.info(f"Exit code is {self.ExitCode}.")
self._stdout = proc.stdout
logging.info("stdout is {self._stdout}.")
logging.info(f"stdout is {self._stdout}.")
self.stderr = proc.stderr
logging.info("stderr is {self.stderr}.")
logging.info(f"stderr is {self.stderr}.")
if self.ExitCode in list(NagiosCode):
self._parse_output()
logging.info(f"Output is {self.Output}.")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment