From 571e93f8827c3f95251077852ba878a44191df89 Mon Sep 17 00:00:00 2001 From: Pierre-Louis Bonicoli Date: Thu, 15 Jun 2017 16:01:09 +0200 Subject: [PATCH] Fix a typo in assert message --- lib/ansible/playbook/task.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/playbook/task.py b/lib/ansible/playbook/task.py index a88a78a1b34..35979b68a31 100644 --- a/lib/ansible/playbook/task.py +++ b/lib/ansible/playbook/task.py @@ -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