Skip to content

Commit

Permalink
Fix message format on the second reminder
Browse files Browse the repository at this point in the history
  • Loading branch information
b10n1k committed May 16, 2024
1 parent 15d8a6f commit fe5969f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backlogger.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@ def _update_issue_priority(poo_id, priority_current, poo_reminder_state, msg):
slo_priorities[priority_current]["next_priority"]["name"],
poo_id))
url = "{}/{}.json".format(data["web"], poo_id)
msg = " ".join(update_slo_text.format(
priority=slo_priorities[priority_current]["next_priority"]["name"]))
msg = " ".join([reminder_text, update_slo_text.format(
priority=slo_priorities[priority_current]["next_priority"]["name"])])
json_rest("PUT", url,
{"issue":
{"priority_id": slo_priorities[priority_current]["next_priority"]["id"],
Expand Down

0 comments on commit fe5969f

Please sign in to comment.