From 828d2fa6a2415b81075997136d4a995e94865415 Mon Sep 17 00:00:00 2001
From: Adar Nimrod <nimrod@shore.co.il>
Date: Thu, 5 Aug 2021 14:11:44 +0300
Subject: [PATCH] Forgot the f in f-strings, corrected.

---
 mnpw/nagios.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/mnpw/nagios.py b/mnpw/nagios.py
index dd5bbdc..f960ed7 100644
--- a/mnpw/nagios.py
+++ b/mnpw/nagios.py
@@ -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}.")
-- 
GitLab