From c7f13ed05aa4bfa1b5eea844efdd5862c56f01ba Mon Sep 17 00:00:00 2001 From: Chris Lumens Date: Wed, 28 Jan 2009 15:38:36 -0500 Subject: [PATCH] Surround module options in quotes on the output side (jlaska). --- pykickstart/commands/device.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pykickstart/commands/device.py b/pykickstart/commands/device.py index 878ea65..c8f835a 100644 --- a/pykickstart/commands/device.py +++ b/pykickstart/commands/device.py @@ -62,7 +62,7 @@ class FC3_Device(KickstartCommand): retval += "device %s %s" % (self.type, self.moduleName) if self.moduleOpts != "": - retval += " --opts=%s" % self.moduleOpts + retval += " --opts=\"%s\"" % self.moduleOpts return retval + "\n" -- 2.11.4.GIT