From de7d35015e7af9b4527f035d4d12c691bd18414a Mon Sep 17 00:00:00 2001 From: jesopo Date: Sat, 8 Feb 2020 11:00:31 +0000 Subject: [PATCH] spec[2] is a string, not an array of strings --- src/core_modules/admin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core_modules/admin.py b/src/core_modules/admin.py index 3b881baa..f87927b1 100644 --- a/src/core_modules/admin.py +++ b/src/core_modules/admin.py @@ -154,7 +154,7 @@ class Module(ModuleManager.BaseModule): raise utils.EventError("Unknown server '%s'" % alias) option = event["spec"][1].lower() - value = " ".join(event["spec"][2]) + value = event["spec"][2] value_parsed = None if option == "hostname":