From 44e829d62660a18b804df38b7d9a27e2a15e3e74 Mon Sep 17 00:00:00 2001 From: Gui Chen Date: Wed, 14 Aug 2013 04:35:13 -0400 Subject: [PATCH] initialize installerfw.features this varialbe is not initialized, so mic will throw traceback: no attribute "features" Signed-off-by: Gui Chen --- mic/kickstart/custom_commands/installerfw.py | 1 + 1 file changed, 1 insertion(+) diff --git a/mic/kickstart/custom_commands/installerfw.py b/mic/kickstart/custom_commands/installerfw.py index 7cfb27f..20856e7 100644 --- a/mic/kickstart/custom_commands/installerfw.py +++ b/mic/kickstart/custom_commands/installerfw.py @@ -38,6 +38,7 @@ class Mic_installerfw(KickstartCommand): def __init__(self, *args, **kwargs): KickstartCommand.__init__(self, *args, **kwargs) self.op = self._getParser() + self.features = None def __str__(self): retval = KickstartCommand.__str__(self) -- 2.7.4