From 337e5d59c55731457ac5775b6759b4195e8fb2ef Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Tue, 4 Oct 2022 15:48:08 +0200 Subject: [PATCH] Revert "make house holes immune from deletion" This reverts commit 7defcd07cfc5ae5ea59220fe38268b1f5f556838. --- files/helpers/cron.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/files/helpers/cron.py b/files/helpers/cron.py index 97a7c5c4c..e5b8a92ee 100644 --- a/files/helpers/cron.py +++ b/files/helpers/cron.py @@ -61,10 +61,6 @@ def sub_inactive_purge_task(): Submission.private == False, Submission.is_banned == False, Submission.deleted_utc == 0).all()] active_holes.append('changelog') # system hole immune from deletion - active_holes.append('furry') # house holes immune from deletion - active_holes.append('vampire') - active_holes.append('racist') - active_holes.append('femboy') dead_holes = g.db.query(Sub).filter(Sub.name.notin_(active_holes)).all() names = [x.name for x in dead_holes]