Added eval for pasting tag lists

This commit is contained in:
Sebastian Kornehl 2015-05-19 15:05:31 +02:00 committed by Matt Clay
parent 2cc53281d8
commit 9cca3a5d17

View file

@ -116,6 +116,9 @@ def post_event(module):
if module.params['date_happened'] != None: if module.params['date_happened'] != None:
body['date_happened'] = module.params['date_happened'] body['date_happened'] = module.params['date_happened']
if module.params['tags'] != None: if module.params['tags'] != None:
if module.params['tags'].startswith("[") and module.params['tags'].endswith("]"):
body['tags'] = eval(module.params['tags'])
else:
body['tags'] = module.params['tags'].split(",") body['tags'] = module.params['tags'].split(",")
if module.params['aggregation_key'] != None: if module.params['aggregation_key'] != None:
body['aggregation_key'] = module.params['aggregation_key'] body['aggregation_key'] = module.params['aggregation_key']