From b637ae4da36fbb36a926fdd1f9d9c0d76f8a9ab8 Mon Sep 17 00:00:00 2001 From: Iustin Pop <iustin@google.com> Date: Tue, 25 Nov 2008 12:51:02 +0000 Subject: [PATCH] Fix a bug in LUSetInstanceParams The wrong names were reused in a copy-paste. Reviewed-by: imsnah --- lib/cmdlib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cmdlib.py b/lib/cmdlib.py index 94fe313f7..dff156513 100644 --- a/lib/cmdlib.py +++ b/lib/cmdlib.py @@ -4797,7 +4797,7 @@ class LUSetInstanceParams(LogicalUnit): self.be_new = be_new # the new actual values self.be_inst = i_bedict # the new dict (without defaults) else: - self.hv_new = self.hv_inst = {} + self.be_new = self.be_inst = {} self.warn = [] -- GitLab