Fixes error in regex example (#65047)
This commit is contained in:
parent
1588ad77e2
commit
7dac93254e
1 changed files with 1 additions and 1 deletions
|
@ -157,7 +157,7 @@ EXAMPLES = r'''
|
|||
search_regex: completed (?P<task>\w+)
|
||||
register: waitfor
|
||||
- debug:
|
||||
msg: Completed {{ waitfor['groupdict']['task'] }}
|
||||
msg: Completed {{ waitfor['match_groupdict']['task'] }}
|
||||
|
||||
- name: Wait until the lock file is removed
|
||||
wait_for:
|
||||
|
|
Loading…
Reference in a new issue