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:
Tobias Wolf 2016-09-12 10:25:28 +02:00 committed by Matt Clay
parent e2795d1401
commit 62575fdf48

View file

@ -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 = {}