From 011e6f9634574ecb28bcc44c3a9546869bbde637 Mon Sep 17 00:00:00 2001 From: Major Hayden Date: Fri, 4 Aug 2017 14:16:28 -0500 Subject: [PATCH] Fix spelling error in linter Change-Id: I2db040a0c257376e7d12742abacd467d7d83e575 --- ansible-lint/YAMLdictchecker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible-lint/YAMLdictchecker.py b/ansible-lint/YAMLdictchecker.py index 3e7a7b5f..41b44d8c 100755 --- a/ansible-lint/YAMLdictchecker.py +++ b/ansible-lint/YAMLdictchecker.py @@ -21,7 +21,7 @@ from ansiblelint import AnsibleLintRule class YAMLdictchecker(AnsibleLintRule): id = 'OSA0001' shortdesc = 'Please use ":" YAML dictionary format instead of "="' - description = 'Pleae follow YAML dicitionary format while creating' + description = 'Please follow YAML dictionary format while creating' 'task and other roles in Ansible' 'Follow this url for examples of how to use YAML dictionary ' 'format. "https://docs.openstack.org/openstack-ansible/latest/'