Skip to content

Commit ccae39e

Browse files
authored
Revert "update change_log (Azure#23742)" (Azure#23763)
This reverts commit 51c5ade.
1 parent a257d77 commit ccae39e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tools/azure-sdk-tools/packaging_tools/change_log.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def operation(self, diff_entry):
6767
return
6868

6969
# Is this a new operation, inside a known operation group?
70-
function_name, parameter_name, *remaining_path = remaining_path
70+
function_name, *remaining_path = remaining_path
7171
if not remaining_path:
7272
if is_deletion:
7373
self.breaking_changes.append(_REMOVE_OPERATION.format(operation_name, function_name))
@@ -80,7 +80,7 @@ def operation(self, diff_entry):
8080
return
8181

8282
# So method signaure changed. Be vague for now
83-
self.breaking_changes.append(_SIGNATURE_CHANGE.format(operation_name, function_name, parameter_name))
83+
self.breaking_changes.append(_SIGNATURE_CHANGE.format(operation_name, function_name))
8484

8585
def models(self, diff_entry):
8686
path, is_deletion = self._unpack_diff_entry(diff_entry)
@@ -144,7 +144,7 @@ def models(self, diff_entry):
144144
## Breaking Changes
145145
_REMOVE_OPERATION_GROUP = "Removed operation group {}"
146146
_REMOVE_OPERATION = "Removed operation {}.{}"
147-
_SIGNATURE_CHANGE = "Operation {}.{} has a new signature {}"
147+
_SIGNATURE_CHANGE = "Operation {}.{} has a new signature"
148148
_MODEL_SIGNATURE_CHANGE = "Model {} has a new signature"
149149
_MODEL_PARAM_DELETE = "Model {} no longer has parameter {}"
150150
_MODEL_PARAM_ADD_REQUIRED = "Model {} has a new required parameter {}"

0 commit comments

Comments
 (0)