fix dupe param

This commit is contained in:
Antonio J. Delgado 2025-09-14 08:51:18 +03:00
parent aa09425424
commit e003e13c36

View file

@ -438,7 +438,7 @@ class MastodonEmailBridge:
) )
@click.option( @click.option(
'--subjet-template', '--subjet-template',
'-t', '-U',
default='{{ data["account"]["display_name"] }} ({{ data["account"]["username"] }}) {% if data["in_reply_to_id"] %}replied {% else %}posted{% endif %}{% for tag in data["tags"] %} #{{ tag["name"] }}{% endfor %}', default='{{ data["account"]["display_name"] }} ({{ data["account"]["username"] }}) {% if data["in_reply_to_id"] %}replied {% else %}posted{% endif %}{% for tag in data["tags"] %} #{{ tag["name"] }}{% endfor %}',
help='Jinja2 template for the subject of the emails.' help='Jinja2 template for the subject of the emails.'
) )