From aea9bf0b6d3cd404013141ae3f71bd9028a67c59 Mon Sep 17 00:00:00 2001 From: Patryk Michalik Date: Fri, 4 Jun 2021 15:21:30 +0200 Subject: [PATCH] =?UTF-8?q?=E2=80=98send=5Fchangelog.py=E2=80=99:=20Use=20?= =?UTF-8?q?triple=20quotes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- send_changelog.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/send_changelog.py b/send_changelog.py index 85b9685405..eac38130b4 100644 --- a/send_changelog.py +++ b/send_changelog.py @@ -12,6 +12,6 @@ commits = repository.iter_commits(f'{github_event_before}...{github_sha}') message = '' for index, commit in enumerate(commits): - message += f'– {commit.message}. [View on GitHub](https://github.com/LawnchairLauncher/lawnchair/commit/{commit.hexsha})' + message += f'''– {commit.message}. [View on GitHub](https://github.com/LawnchairLauncher/lawnchair/commit/{commit.hexsha})''' -requests.get(f'https://api.telegram.org/bot{telegram_ci_bot_token}/sendMessage?chat_id={telegram_ci_channel_id}&parse_mode=Markdown&text={message}') \ No newline at end of file +requests.get(f'''https://api.telegram.org/bot{telegram_ci_bot_token}/sendMessage?chat_id={telegram_ci_channel_id}&parse_mode=Markdown&text={message}''') \ No newline at end of file