We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents aa76018 + 657b3fd commit 6b117bdCopy full SHA for 6b117bd
main.py
@@ -253,7 +253,10 @@ def parse_args():
253
toot_body += '\nby ' + feed_entry.authors[0].name
254
255
all_tags_to_add = tags_to_add
256
- if dynamic_tags: all_tags_to_add += ' ' + dynamic_tags.get(toot_body, toot_language)
+
257
+ tags_generated = dynamic_tags.get(toot_body, toot_language)
258
+ if tags_generated:
259
+ all_tags_to_add += ' ' + tags_generated
260
261
if all_tags_to_add != '':
262
filtered_tags_to_add = ''
0 commit comments