From 28b28fe3cfe2e8c0673e876f222a769114136554 Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Tue, 11 Jan 2022 20:38:14 +0100 Subject: [PATCH] Config: Fix crash happening since the previous commit --- plugins/Config/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Config/plugin.py b/plugins/Config/plugin.py index 64a95b17f..67f07156f 100644 --- a/plugins/Config/plugin.py +++ b/plugins/Config/plugin.py @@ -499,7 +499,7 @@ class Config(callbacks.Plugin): netgroup = group.get(':' + network.network) changroup = netgroup.get(channel) checkCanSetValue(irc, msg, changroup) - changroup._setValue(netgroup(), inherited=True) + changroup._setValue(netgroup.value, inherited=True) # reset group.#channel changroup = group.get(channel)