From: Michael Tremer Date: Mon, 29 Dec 2025 11:09:31 +0000 (+0000) Subject: sources: Fix listing all sources X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=754e999c6773b48a62d278b2d26ef4e2f667978d;p=dbl.git sources: Fix listing all sources I have no idea how I confused all these field names... Oh well... Signed-off-by: Michael Tremer --- diff --git a/src/dnsbl/sources.py b/src/dnsbl/sources.py index 6eb94de..c53a164 100644 --- a/src/dnsbl/sources.py +++ b/src/dnsbl/sources.py @@ -65,11 +65,10 @@ class Sources(object): Source, ) .where( - Source.removed_at == None, + Source.deleted_at == None, ) .order_by( Source.name, - Source.slug, ) )