Skip to content

Commit

Permalink
Change the diffing set
Browse files Browse the repository at this point in the history
  • Loading branch information
bluemoon committed Apr 2, 2017
1 parent 8235c21 commit 2eceaad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion normalize/diff.py
Original file line number Diff line number Diff line change
Expand Up @@ -666,7 +666,7 @@ def compare_collection_iter(propval_a, propval_b, fs_a=None, fs_b=None,

if options.recurse:
# we can be sure that both records have these keys
shared_keys = set(rev_key.values())
shared_keys = set(rev_keys["a"].values()).intersection(rev_keys["b"].values())
for key in shared_keys:
if (isinstance(propval_a, collections.Iterable) and
isinstance(propval_b, collections.Iterable)):
Expand Down

0 comments on commit 2eceaad

Please sign in to comment.