diff options
| author | 2020-02-08 11:00:31 +0000 | |
|---|---|---|
| committer | 2020-02-08 11:00:31 +0000 | |
| commit | de7d35015e7af9b4527f035d4d12c691bd18414a (patch) | |
| tree | d815d25c668331d6aee5a99ebd27f66784aa76ec /src/core_modules/admin.py | |
| parent | add 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.py | 2 |
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": |
