From 75a21345cc353240eedbccdfe87febc230073202 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Fri, 14 Jan 2022 13:15:43 +0000 Subject: [PATCH] Lower case appears to be the standard --- newswire.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/newswire.py b/newswire.py index 425220c5b..717b706d5 100644 --- a/newswire.py +++ b/newswire.py @@ -229,8 +229,8 @@ def _add_newswire_dict_entry(base_dir: str, domain: str, # Include tags from podcast categories if podcast_properties: if podcast_properties.get('explicit'): - if '#NSFW' not in post_tags: - post_tags.append('#NSFW') + if '#nsfw' not in post_tags: + post_tags.append('#nsfw') post_tags += podcast_properties['categories']