mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix a typo in assert message
This commit is contained in:
parent
89c3151167
commit
571e93f882
1 changed files with 1 additions and 1 deletions
|
@ -161,7 +161,7 @@ class Task(Base, Conditional, Taggable, Become):
|
|||
keep it short.
|
||||
'''
|
||||
|
||||
assert isinstance(ds, dict), 'ds (%s) should be a dict but was a %s' % (ds, type(dict))
|
||||
assert isinstance(ds, dict), 'ds (%s) should be a dict but was a %s' % (ds, type(ds))
|
||||
|
||||
# the new, cleaned datastructure, which will have legacy
|
||||
# items reduced to a standard structure suitable for the
|
||||
|
|
Loading…
Reference in a new issue