1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Added fallback for parse_error(string) on elasticsearch_plugin module. (#2517)

This commit is contained in:
Shinichi TAMURA 2016-07-06 14:20:23 +09:00 committed by Matt Clay
parent 2dda9d3343
commit 73b95ab853

View file

@ -118,7 +118,10 @@ def is_plugin_present(plugin_dir, working_dir):
def parse_error(string): def parse_error(string):
reason = "reason: " reason = "reason: "
try:
return string[string.index(reason) + len(reason):].strip() return string[string.index(reason) + len(reason):].strip()
except ValueError:
return string
def main(): def main():