lib/ansible/plugins/inventory/ini.py: added spacing for error message (#67361)
Signed-off-by: James McClune <falcon78921@users.noreply.github.com>
This commit is contained in:
parent
fc05c50b7f
commit
059a193dff
1 changed files with 1 additions and 1 deletions
|
@ -203,7 +203,7 @@ class InventoryModule(BaseFileInventoryPlugin):
|
|||
|
||||
continue
|
||||
elif line.startswith('[') and line.endswith(']'):
|
||||
self._raise_error("Invalid section entry: '%s'. Please make sure that there are no spaces" % line +
|
||||
self._raise_error("Invalid section entry: '%s'. Please make sure that there are no spaces" % line + " " +
|
||||
"in the section entry, and that there are no other invalid characters")
|
||||
|
||||
# It's not a section, so the current state tells us what kind of
|
||||
|
|
Loading…
Reference in a new issue