mirror of
https://github.com/MISP/misp-galaxy.git
synced 2024-11-22 23:07:19 +00:00
fix: [sigma] version must be an int
This commit is contained in:
parent
323f9f47a1
commit
997e570ad2
1 changed files with 1 additions and 1 deletions
|
@ -127,7 +127,7 @@ def create_cluster(uuidGalaxy=unique_uuid):
|
|||
|
||||
:return cluster: Dict with the basic information needed for the JSON file.
|
||||
"""
|
||||
version = time.strftime("%Y%m%d")
|
||||
version = int(time.strftime("%Y%m%d"))
|
||||
cluster = {
|
||||
"authors": ["@Joseliyo_Jstnk"],
|
||||
"category": "rules",
|
||||
|
|
Loading…
Reference in a new issue