mirror of
https://github.com/MISP/misp-galaxy.git
synced 2024-11-23 07:17:17 +00:00
improve csv_to_galaxy 2
This commit is contained in:
parent
5b68ec56db
commit
bc05a2aeee
1 changed files with 2 additions and 1 deletions
|
@ -36,7 +36,8 @@ if __name__ == '__main__':
|
||||||
temp["description"] = ""
|
temp["description"] = ""
|
||||||
if args.value_description is not None:
|
if args.value_description is not None:
|
||||||
for i in args.value_description:
|
for i in args.value_description:
|
||||||
temp["description"] = temp["description"] + data[i].replace('\n', ' ') + "; "
|
if data[i] != "":
|
||||||
|
temp["description"] = temp["description"] + data[i].replace('\n', ' ') + "; "
|
||||||
else:
|
else:
|
||||||
for i in range(len(data)):
|
for i in range(len(data)):
|
||||||
if i != args.value and data[i] != "":
|
if i != args.value and data[i] != "":
|
||||||
|
|
Loading…
Reference in a new issue