From e6e88de633b079972af019e6f8c59db80f675ffe Mon Sep 17 00:00:00 2001 From: Adeodato Simo <dato@google.com> Date: Wed, 8 Dec 2010 19:27:06 +0000 Subject: [PATCH] objects.py: fix minor error in NodeGroup.SimpleFillND docstring The defaults are filled in from the node group defaults, not cluster defaults (presumably copy & paste error). Signed-off-by: Adeodato Simo <dato@google.com> Reviewed-by: Michael Hanselmann <hansmi@google.com> --- lib/objects.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/objects.py b/lib/objects.py index c2804bc59..343c21820 100644 --- a/lib/objects.py +++ b/lib/objects.py @@ -1012,7 +1012,7 @@ class NodeGroup(ConfigObject): @param ndparams: the dict to fill @rtype: dict @return: a copy of the passed in ndparams with missing keys filled - from the cluster defaults + from the node group defaults """ return FillDict(self.ndparams, ndparams) -- GitLab