Skip to content

Commit

Permalink
Update change_log.py (Azure#20680)
Browse files Browse the repository at this point in the history
  • Loading branch information
msyyc authored and hildurhodd committed Sep 24, 2021
1 parent 4d88ff8 commit 6f23cfb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/azure-sdk-tools/packaging_tools/change_log.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,8 @@ def models(self, diff_entry):
def build_change_log(old_report, new_report):
change_log = ChangeLog(old_report, new_report)

result = diff(old_report, new_report)
# when diff result is large, compare_lengths=True may cause wrong result
result = diff(old_report, new_report, compare_lengths=False)

for diff_line in result:
# Operations
Expand Down

0 comments on commit 6f23cfb

Please sign in to comment.