From 8f6c3538cd90f6aefa382275a75efd3ae492946a Mon Sep 17 00:00:00 2001 From: Konrad Kleine Date: Tue, 13 Aug 2024 17:48:09 +0200 Subject: [PATCH] Fix code rendering of placeholder comment --- snapshot_manager/snapshot_manager/snapshot_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snapshot_manager/snapshot_manager/snapshot_manager.py b/snapshot_manager/snapshot_manager/snapshot_manager.py index 0eaacf19..015b4e0e 100644 --- a/snapshot_manager/snapshot_manager/snapshot_manager.py +++ b/snapshot_manager/snapshot_manager/snapshot_manager.py @@ -181,7 +181,7 @@ def check_todays_builds(self) -> None: # created output will always come at the end. for chroot in all_chroots: comment = issue.create_comment( - f" This is a placeholder for any errors that might happen for the `{chroot}` chroot." + f" This is a placeholder for any errors that might happen for the {chroot} chroot." ) self.github.minimize_comment_as_outdated(comment)