mirror of
https://github.com/MISP/misp-galaxy.git
synced 2024-11-25 16:27:19 +00:00
chg: [tools] fix the date input from the sigma rules generator
This commit is contained in:
parent
06368b5f61
commit
916e9e3e29
1 changed files with 1 additions and 1 deletions
|
@ -101,7 +101,7 @@ def create_cluster_json(galaxyCluster):
|
|||
This function finally creates the sigma-cluster.json file with all the information.
|
||||
"""
|
||||
with open("sigma-cluster.json", "w") as f:
|
||||
json.dump(galaxyCluster, f)
|
||||
json.dump(galaxyCluster, f, default=str)
|
||||
|
||||
|
||||
def parseYaml(inputPath, yamlFile):
|
||||
|
|
Loading…
Reference in a new issue