Skip to content

Commit

Permalink
Update change_log.py (Azure#24322)
Browse files Browse the repository at this point in the history
fix bug
  • Loading branch information
BigCat20196 authored May 6, 2022
1 parent 3e79882 commit 79c58f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/azure-sdk-tools/packaging_tools/change_log.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,9 +176,9 @@ def build_change_log(old_report, new_report):
# Operations
if diff_line[0][0] == "operations":
change_log.operation(diff_line)
else:
elif diff_line[0][0] == "models":
change_log.models(diff_line)
if diff_line[0][0] == 'client':
elif diff_line[0][0] == 'client':
change_log.client()

return change_log
Expand Down

0 comments on commit 79c58f7

Please sign in to comment.