diff options
| -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, |
