Skip to content

Commit

Permalink
Improve ChangeLog [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
lmazuel committed Jul 31, 2018
1 parent 2ee5618 commit 0379912
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion azure-sdk-tools/packaging_tools/change_log.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,11 @@ def models(self, diff_entry):
path, is_deletion = self._unpack_diff_entry(diff_entry)

# Is this a new model?
_, mtype, model_name, *remaining_path = path
_, mtype, *remaining_path = path
if not remaining_path:
# Seen once in Network, because exceptions were added. Bypass
return
model_name, *remaining_path = remaining_path
if not remaining_path:
# A new model or a model deletion is not very interesting by itself
# since it usually means that there is a new operation
Expand Down

0 comments on commit 0379912

Please sign in to comment.