From 920a9638fccca5cc1002034e2b846cea3f287355 Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Mon, 30 Sep 2024 20:33:41 +0200 Subject: [PATCH] tldr-bot: fix for `/comment` --- tldr_bot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tldr_bot.py b/tldr_bot.py index 5e7dc84..891ba04 100644 --- a/tldr_bot.py +++ b/tldr_bot.py @@ -91,8 +91,8 @@ def comment(): if delete_resp.status_code != 204: return make_response(delete_resp.text, 500) - # Post comment. - resp = post_comment(pr_id, comment_body) + # Post comment. + resp = post_comment(pr_id, comment_body) if resp.status_code != 201: return make_response(resp.text, 500)