From b932f59d7b7567ec3f990c82522112e7da8606d5 Mon Sep 17 00:00:00 2001 From: Nikos Skalkotos Date: Thu, 1 Aug 2013 11:12:54 +0300 Subject: [PATCH] Fix a typo in a variable name --- image_creator/os_type/windows.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/image_creator/os_type/windows.py b/image_creator/os_type/windows.py index 3592500..994a7b0 100644 --- a/image_creator/os_type/windows.py +++ b/image_creator/os_type/windows.py @@ -280,7 +280,7 @@ class Windows(OSBase): txt = "System preparation parameter: `%s' is needed but missing!" for name, param in self.needed_sysprep_params.items(): if name not in self.sysprep_params: - raise FatalError(txt % param) + raise FatalError(txt % name) self.mount(readonly=False) try: -- 1.7.10.4