From 4cbda6b5a19e5bbf64b2f011b598865d90652c89 Mon Sep 17 00:00:00 2001 From: Georg Pfuetzenreuter Date: Sun, 21 May 2023 03:03:54 +0200 Subject: [PATCH] Correct typo in log message Caught during testing. Signed-off-by: Georg Pfuetzenreuter --- scullery.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scullery.py b/scullery.py index d550a2d..5a373bd 100755 --- a/scullery.py +++ b/scullery.py @@ -172,7 +172,7 @@ def main_interactive(): _abort('Specified suite does not reference a box') boxconf = configmap['boxes'].get(box, None) if boxconf is None: - _abort('Suite referencs an undefined box') + _abort('Suite references an undefined box') box_name = boxconf.get('name', None) box_image = boxconf.get('image', None) box_file = boxconf.get('file', vagfile)