mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Added fallback for parse_error(string) on elasticsearch_plugin module. (#2517)
This commit is contained in:
committed by
Matt Clay
parent
2dda9d3343
commit
73b95ab853
@@ -118,7 +118,10 @@ def is_plugin_present(plugin_dir, working_dir):
|
||||
|
||||
def parse_error(string):
|
||||
reason = "reason: "
|
||||
return string[string.index(reason) + len(reason):].strip()
|
||||
try:
|
||||
return string[string.index(reason) + len(reason):].strip()
|
||||
except ValueError:
|
||||
return string
|
||||
|
||||
|
||||
def main():
|
||||
|
||||
Reference in New Issue
Block a user