From a7a6f5e6ee5ce3cbba9b335144c54f68bd4fe147 Mon Sep 17 00:00:00 2001 From: Marc Foley Date: Fri, 14 Jun 2024 14:50:40 +0100 Subject: [PATCH] trafficjam: add family tags --- Lib/gftools/push/trafficjam.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Lib/gftools/push/trafficjam.py b/Lib/gftools/push/trafficjam.py index 244cbc52..74f838be 100644 --- a/Lib/gftools/push/trafficjam.py +++ b/Lib/gftools/push/trafficjam.py @@ -397,6 +397,9 @@ def to_server_file(self, fp: "str | Path"): if item.category == PushCategory.BLOCKED or item.path in seen: continue seen.add(item.path) + if str(item.path) == "tags/all/families.csv": + bins["tags"].add(item) + continue bins[item.category.value].add(item) res = []