@ -9,11 +9,11 @@
#
# Ansible is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
# Make coding more python3-ish
from __future__ import ( absolute_import , division , print_function )
@ -34,13 +34,13 @@ Syntax Error while loading YAML.
% s """
YAML_POSITION_DETAILS = """ \
The error appears to have been in ' %s ' : line % s , column % s , but may
The error appears to be in ' %s ' : line % s , column % s , but may
be elsewhere in the file depending on the exact syntax problem .
"""
YAML_COMMON_DICT_ERROR = """ \
This one looks easy to fix . YAML thought it was looking for the start of a
hash / dictionary and was confused to see a second " { " . Most likely this was
This one looks easy to fix . YAML thought it was looking for the start of a
hash / dictionary and was confused to see a second " { " . Most likely this was
meant to be an ansible template evaluation instead , so we have to give the
parser a small hint that we wanted a string instead . The solution here is to
just quote the entire value .
@ -56,7 +56,7 @@ It should be written as:
YAML_COMMON_UNQUOTED_VARIABLE_ERROR = """ \
We could be wrong , but this one looks like it might be an issue with
missing quotes . Always quote template expression brackets when they
missing quotes . Always quote template expression brackets when they
start a value . For instance :
with_items :
@ -69,7 +69,7 @@ Should be written as:
"""
YAML_COMMON_UNQUOTED_COLON_ERROR = """ \
This one looks easy to fix . There seems to be an extra unquoted colon in the line
This one looks easy to fix . There seems to be an extra unquoted colon in the line
and this is confusing the parser . It was only expecting to find one free
colon . The solution is just add some quotes around the colon , or quote the
entire line after the first colon .
@ -88,9 +88,9 @@ Or:
"""
YAML_COMMON_PARTIALLY_QUOTED_LINE_ERROR = """ \
This one looks easy to fix . It seems that there is a value started
This one looks easy to fix . It seems that there is a value started
with a quote , and the YAML parser is expecting to see the line ended
with the same kind of quote . For instance :
with the same kind of quote . For instance :
when : " ok " in result . stdout
@ -105,8 +105,8 @@ Or equivalently:
YAML_COMMON_UNBALANCED_QUOTES_ERROR = """ \
We could be wrong , but this one looks like it might be an issue with
unbalanced quotes . If starting a value with a quote , make sure the
line ends with the same set of quotes . For instance this arbitrary
unbalanced quotes . If starting a value with a quote , make sure the
line ends with the same set of quotes . For instance this arbitrary
example :
foo : " bad " " wolf "
@ -133,3 +133,8 @@ Should be written as:
version : 1.2 .3
# ^--- all spaces here.
"""
YAML_AND_SHORTHAND_ERROR = """ \
There appears to be both ' k=v ' shorthand syntax and YAML in this task . \
Only one syntax may be used .
"""