Fix one character typo in my previous PR for debconf module (#2899)
Small oops in the previous PR #2530 commit. Instead of `diff_dict` it slipped through as `diffdict`. Please merge and sorry.
This commit is contained in:
parent
e2795d1401
commit
62575fdf48
1 changed files with 1 additions and 1 deletions
|
@ -164,7 +164,7 @@ def main():
|
||||||
if module._diff:
|
if module._diff:
|
||||||
after = prev.copy()
|
after = prev.copy()
|
||||||
after.update(curr)
|
after.update(curr)
|
||||||
diffdict = {'before': prev, 'after': after}
|
diff_dict = {'before': prev, 'after': after}
|
||||||
else:
|
else:
|
||||||
diff_dict = {}
|
diff_dict = {}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue