From 0eee74e7300e6c778aa4ee132142ae58fb174e38 Mon Sep 17 00:00:00 2001 From: Tlams Date: Thu, 8 Feb 2018 19:51:22 +0000 Subject: [PATCH] fix str to int for delay RunAnalyse --- code/scripts/main/core/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/scripts/main/core/core.py b/code/scripts/main/core/core.py index 67e996e..79b9b10 100644 --- a/code/scripts/main/core/core.py +++ b/code/scripts/main/core/core.py @@ -26,7 +26,7 @@ def RunAnalyse(clusters_conf, generalconf, delay=300): while True: """ Instances types availables: lxc/qemu/all""" play.run("all") - time.sleep(delay) + time.sleep(int(delay)) class Core: