mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Fix a typo in assert message
This commit is contained in:
committed by
Brian Coca
parent
89c3151167
commit
571e93f882
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user