mirror of https://github.com/ansible/ansible.git
Fix YAML error message when error is at the end of the file (#73241)
* Fix YAML error message when error is at the end of the file If a YAML file fails to load due to a syntax error in a file, or there is an error in the last line of a file, PyYAML reports the last line number of the file as the index where the error occurred. When reading the file lines, we use that index to the get the relevant line. If the index value is out of range, the relevant line is lost for error reporting. Subtract one from the index value to avoid the IndexError in this specific scenario. It is possible to still get an IndexError, which will be handled as it is currently. * Update existing tests and add new testspull/73294/head
parent
30d93995dd
commit
e8d4b62b41
@ -0,0 +1,2 @@
|
|||||||
|
bugfixes:
|
||||||
|
- display correct error information when an error exists in the last line of the file (https://github.com/ansible/ansible/issues/16456)
|
Loading…
Reference in New Issue