mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix format string typo
This commit is contained in:
parent
4a3e828b83
commit
af40b19a2d
1 changed files with 1 additions and 1 deletions
|
@ -144,7 +144,7 @@ def return_data(text, options, outputname, module):
|
|||
|
||||
def boilerplate():
|
||||
if not os.path.exists(EXAMPLE_YAML):
|
||||
print >>sys.stderr, "Missing example boiler plate: %S" % EXAMPLE_YAML
|
||||
print >>sys.stderr, "Missing example boiler plate: %s" % EXAMPLE_YAML
|
||||
print "DOCUMENTATION = '''"
|
||||
print file(EXAMPLE_YAML).read()
|
||||
print "'''"
|
||||
|
|
Loading…
Reference in a new issue