mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
fix adhoc that broke with assuming step is always in options
This commit is contained in:
@@ -69,7 +69,7 @@ class StrategyBase:
|
||||
self._variable_manager = tqm.get_variable_manager()
|
||||
self._loader = tqm.get_loader()
|
||||
self._final_q = tqm._final_q
|
||||
self._step = tqm._options.step
|
||||
self._step = getattr(tqm._options, 'step', False)
|
||||
self._display = display
|
||||
|
||||
# internal counters
|
||||
|
||||
Reference in New Issue
Block a user