mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-24 13:50:22 -07:00
E501 fixes (#22879)
This commit is contained in:
parent
4fdeade389
commit
3164e8b561
215 changed files with 1328 additions and 761 deletions
|
@ -62,7 +62,8 @@ class ActionModule(ActionBase):
|
|||
|
||||
if not isidentifier(k):
|
||||
result['failed'] = True
|
||||
result['msg'] = "The variable name '%s' is not valid. Variables must start with a letter or underscore character, and contain only letters, numbers and underscores." % k
|
||||
result['msg'] = ("The variable name '%s' is not valid. Variables must start with a letter or underscore character, and contain only "
|
||||
"letters, numbers and underscores." % k)
|
||||
return result
|
||||
|
||||
stats['data'][k] = self._templar.template(v)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue