From 997e570ad23aad74ddd3ec6517c71b907fa0cdfd Mon Sep 17 00:00:00 2001 From: Alexandre Dulaunoy Date: Fri, 13 Jan 2023 16:38:56 +0100 Subject: [PATCH] fix: [sigma] version must be an int --- tools/sigma/sigma-to-galaxy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/sigma/sigma-to-galaxy.py b/tools/sigma/sigma-to-galaxy.py index ef912e6..50b8e50 100644 --- a/tools/sigma/sigma-to-galaxy.py +++ b/tools/sigma/sigma-to-galaxy.py @@ -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",