mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-02 14:40:19 -07:00
Make sure we are comparing bytes extensions in inventory plugins (#42475)
* Ensure we are comparing text paths with extensions. Fixes #42118 * Add changelog
This commit is contained in:
parent
8e1d223301
commit
abb05c98f3
2 changed files with 3 additions and 1 deletions
|
@ -258,7 +258,7 @@ class InventoryManager(object):
|
|||
|
||||
# initialize and figure out if plugin wants to attempt parsing this file
|
||||
try:
|
||||
plugin_wants = bool(plugin.verify_file(source))
|
||||
plugin_wants = bool(plugin.verify_file(to_text(source)))
|
||||
except Exception:
|
||||
plugin_wants = False
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue