From dd54225165529368ce10fa34208cdd8798bcf1c8 Mon Sep 17 00:00:00 2001 From: Jonatan Schlag Date: Thu, 19 Apr 2018 13:00:19 +0200 Subject: [PATCH] Fix logging if we do not have an image file Signed-off-by: Jonatan Schlag --- test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.py b/test.py index 3787655..d2a6d97 100755 --- a/test.py +++ b/test.py @@ -72,7 +72,7 @@ class vm(): self.image = image if not os.path.isfile(self.image): - self.log.error("No such file: {}".format(self.settings_file)) + self.log.error("No such file: {}".format(self.image)) self.root_uid = root_uid -- 2.39.2