From 6cc3d3080c2aeb385d4a8bc0af628281aaef4232 Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Sat, 16 May 2020 10:20:43 +0200 Subject: [PATCH] Config: mention 'reset channel' and 'reset network' in setdefault's help. Closes GH-680. --- plugins/Config/plugin.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/Config/plugin.py b/plugins/Config/plugin.py index d2bd90fd1..2a3045576 100644 --- a/plugins/Config/plugin.py +++ b/plugins/Config/plugin.py @@ -466,6 +466,8 @@ class Config(callbacks.Plugin): """ Resets the configuration variable to its default value. + Use commands 'reset channel' and 'reset network' instead to make + a channel- or network- specific value inherit from the global one. """ v = str(group.__class__(group._default, '')) self._setValue(irc, msg, group, v)