From 307ab1f56149b454ed994a214c8549b94ddd469f Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Thu, 19 Dec 2013 17:22:05 -0500 Subject: [PATCH] and it was supposed to be a dict Signed-off-by: Brian Coca --- library/system/debconf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/system/debconf b/library/system/debconf index b05b05d1764..1b48e04156f 100644 --- a/library/system/debconf +++ b/library/system/debconf @@ -147,7 +147,7 @@ def main(): if rc: module.fail_json(msg=e) curr = { question: value } - prev = (question: prev[question]) + prev = {question: prev[question]} module.exit_json(changed=changed, msg=msg, current=curr, previous=prev)