Fixed Json Output

This commit is contained in:
brotoskyj
2025-08-21 17:31:36 -04:00
parent e56d6c36b0
commit f60455e7cd
3 changed files with 8 additions and 5 deletions
+5 -2
View File
@@ -35,9 +35,12 @@ def allowlistexechistories(url, outputjson: bool):
if (datetime.date.today() - datetime.timedelta(days=1) > datetime.datetime.strptime(item['datetime'].replace(' +0000 UTC', ''), '%Y-%m-%dT%H:%M:%SZ').date()):
pass
else:
json_output['response']['exechistories'].append(json_response_data['response']['exechistories'])
#json_output['response']['exechistories'].append(json_response_data['response']['exechistories'][1])
for output in json_response_data['response']['exechistories']:
json_output['response']['exechistories'].append(output)
json_output = json.dumps(json_output)
if outputjson == True:
return (json_output)
return json_output
#endpoint = url + '/v1/logging/exechistories'
#payload_dict = {
# "type":[1, 2, 6, 7],