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
eb6e0069e9
commit
061c6517eb
1 changed files with 1 additions and 1 deletions
|
@ -164,7 +164,7 @@ def main():
|
|||
if module._diff:
|
||||
after = prev.copy()
|
||||
after.update(curr)
|
||||
diffdict = {'before': prev, 'after': after}
|
||||
diff_dict = {'before': prev, 'after': after}
|
||||
else:
|
||||
diff_dict = {}
|
||||
|
||||
|
|
Loading…
Reference in a new issue