From 3c2b6a98f2de6427cbc0fd9b8d75f113d94f9f81 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ren=C3=A9=20Nussbaumer?= Date: Thu, 25 Nov 2010 16:11:44 +0100 Subject: [PATCH] The default value for ndparams should be None not {} MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: René Nussbaumer Reviewed-by: Iustin Pop --- lib/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cli.py b/lib/cli.py index 81c5901..6739b6c 100644 --- a/lib/cli.py +++ b/lib/cli.py @@ -1102,7 +1102,7 @@ PREALLOC_WIPE_DISKS_OPT = cli_option("--prealloc-wipe-disks", default=None, " creation")) NODE_PARAMS_OPT = cli_option("--node-parameters", dest="ndparams", - type="keyval", default={}, + type="keyval", default=None, help="Node parameters") -- 1.7.10.4