From 9a33975f52127a0c786065252074476bce2513eb Mon Sep 17 00:00:00 2001 From: Bastian Schroll Date: Fri, 25 Oct 2019 14:32:24 +0200 Subject: [PATCH] fix module stats type name --- module/module.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/module.py b/module/module.py index 137f1aa..ad0ede2 100644 --- a/module/module.py +++ b/module/module.py @@ -75,7 +75,7 @@ class Module: """!Returns statistical information's from last module run @return Statistics as pyton dict""" - stats = {"type": "plugin", + stats = {"type": "module", "runCount": self._runCount, "cumTime": self._cumTime, "moduleTime": self._moduleTime,