aboutsummaryrefslogtreecommitdiff
path: root/src/core_modules/admin.py
diff options
context:
space:
mode:
authorGravatar jesopo2020-02-08 11:00:31 +0000
committerGravatar jesopo2020-02-08 11:00:31 +0000
commitde7d35015e7af9b4527f035d4d12c691bd18414a (patch)
treed815d25c668331d6aee5a99ebd27f66784aa76ec /src/core_modules/admin.py
parentadd opt-in inactive channel pruning (diff)
signature
spec[2] is a string, not an array of strings
Diffstat (limited to 'src/core_modules/admin.py')
-rw-r--r--src/core_modules/admin.py2
1 files changed, 1 insertions, 1 deletions
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":