diff options
| author | 2020-03-05 13:50:59 +0000 | |
|---|---|---|
| committer | 2020-03-05 13:50:59 +0000 | |
| commit | 1654fafd7e835f2a576c45cd5c3f1a398b6dbe9f (patch) | |
| tree | f6ee53a7df0d8c5c8f9a5630be2ee9685f49326c /modules | |
| parent | handle RPL_VISIBLEHOST (396) to catch our hostname (maybe username too) changing (diff) | |
| signature | ||
default inactive_channel.py timer to 4 weeks, not 2
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/inactive_channels.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/inactive_channels.py b/modules/inactive_channels.py index 5959d432..22b6ae1a 100644 --- a/modules/inactive_channels.py +++ b/modules/inactive_channels.py @@ -1,11 +1,11 @@ import datetime from src import ModuleManager, utils -PRUNE_TIMEDELTA = datetime.timedelta(weeks=2) +PRUNE_TIMEDELTA = datetime.timedelta(weeks=4) SETTING_NAME = "inactive-channels" SETTING = utils.BoolSetting(SETTING_NAME, - "Whether or not to leave inactive channels after 2 weeks") + "Whether or not to leave inactive channels after 4 weeks") MODE_SETTING_NAME = "inactive-channel-modes" MODE_SETTING = utils.BoolSetting(MODE_SETTING_NAME, |
