mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Set the 'itemValue' for files, even when they can't be read
This commit is contained in:
parent
76d74a8fe5
commit
f15b3af870
1 changed files with 2 additions and 1 deletions
|
@ -292,11 +292,12 @@ class TSSClient(object):
|
||||||
file_content = i['itemValue'].content
|
file_content = i['itemValue'].content
|
||||||
with open(os.path.join(file_download_path, str(obj['id']) + "_" + i['slug']), "wb") as f:
|
with open(os.path.join(file_download_path, str(obj['id']) + "_" + i['slug']), "wb") as f:
|
||||||
f.write(file_content)
|
f.write(file_content)
|
||||||
i['itemValue'] = "*** Not Valid For Display ***"
|
|
||||||
except ValueError:
|
except ValueError:
|
||||||
raise AnsibleOptionsError("Failed to download {0}".format(str(i['slug'])))
|
raise AnsibleOptionsError("Failed to download {0}".format(str(i['slug'])))
|
||||||
except AttributeError:
|
except AttributeError:
|
||||||
display.warning("Could not read file content for {0}".format(str(i['slug'])))
|
display.warning("Could not read file content for {0}".format(str(i['slug'])))
|
||||||
|
finally:
|
||||||
|
i['itemValue'] = "*** Not Valid For Display ***"
|
||||||
else:
|
else:
|
||||||
raise AnsibleOptionsError("File download path does not exist")
|
raise AnsibleOptionsError("File download path does not exist")
|
||||||
return obj
|
return obj
|
||||||
|
|
Loading…
Reference in a new issue