From fd78916a73659389dfdea5b3d505f2eda8033881 Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Thu, 19 Dec 2013 17:21:00 -0500 Subject: [PATCH] fixed typo for showing diff 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 2215d01674..b05b05d176 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)