Skip to content

Commit

Permalink
win_updates - fix up download typo (#558)
Browse files Browse the repository at this point in the history
  • Loading branch information
jborean93 authored Oct 3, 2023
1 parent 1a4307d commit ec52889
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions changelogs/fragments/win_updates-typo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
bugfixes:
- win_updates - Fix up typo for Download progress event messages - https://github.com/ansible-collections/ansible.windows/issues/554
2 changes: 1 addition & 1 deletion plugins/action/win_updates.py
Original file line number Diff line number Diff line change
Expand Up @@ -1032,7 +1032,7 @@ def _process_download_install_progress(self, task, result, inventory_hostname):
3: 'Verifying',
}.get(current_phase, current_phase)

msg = "Downlad progress - Total: {0}/{1} {2}%, Update ({3}): {4}/{5} {6}%, Phase: {7}".format(
msg = "Download progress - Total: {0}/{1} {2}%, Update ({3}): {4}/{5} {6}%, Phase: {7}".format(
result['progress']['TotalBytesDownloaded'],
result['progress']['TotalBytesToDownload'],
total_percentage,
Expand Down

0 comments on commit ec52889

Please sign in to comment.