Fix % formatting without a tuple.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
parent
edcb894776
commit
5b5fda2354
8 changed files with 18 additions and 18 deletions
|
@ -103,5 +103,5 @@ class ZulipPlugin(Component):
|
|||
|
||||
def ticket_deleted(self, ticket: Any) -> None:
|
||||
"""Called when a ticket is deleted."""
|
||||
content = "%s was deleted." % markdown_ticket_url(ticket, heading="Ticket")
|
||||
content = "%s was deleted." % (markdown_ticket_url(ticket, heading="Ticket"),)
|
||||
send_update(ticket, content)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue