1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Merge pull request #14847 from bob-smith/errormsg

Make it easier to read error message
This commit is contained in:
Brian Coca 2016-03-07 08:52:54 -05:00
commit f0b2af2f9d

View file

@ -414,7 +414,7 @@ class Base:
def _validate_variable_keys(ds):
for key in ds:
if not isidentifier(key):
raise TypeError("%s is not a valid variable name" % key)
raise TypeError("'%s' is not a valid variable name" % key)
try:
if isinstance(ds, dict):