From 3587053119a0129f8ad88e26ed182bbcbb1f80bd 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 --- system/debconf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/debconf b/system/debconf index b05b05d1764..1b48e04156f 100644 --- a/system/debconf +++ b/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)