Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
lsielskiSii committed Sep 19, 2024
1 parent c69e029 commit 3a3eff4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/az_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def tag_work_items(self, work_items_ids: list[str], tag: str):
print(f'Trying to tag {work_item_id}')
output = None
try:
output = check_output(f'az boards work-item update --id {work_item_id} --org https://dev.azure.com/lukaszadamsielski0187 --fields "System.Tags={tag}', shell=True, stderr=subprocess.STDOUT)
output = check_output(f'az boards work-item update --id {work_item_id} --org https://dev.azure.com/lukaszadamsielski0187 --fields "System.Tags={tag}"', shell=True, stderr=subprocess.STDOUT)
update_result.update({work_item_id: output})
except CalledProcessError as e:
print(f"Update process failed for {work_item_id}, error: {e}")
Expand Down

0 comments on commit 3a3eff4

Please sign in to comment.