From fd7ea02ecf01cf83f5482b93277cdad8b952f599 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Thu, 29 Aug 2024 10:09:34 -0700 Subject: [PATCH] refactor: Replace hardcoded fence string with dynamic triple backtick --- aider/report.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/report.py b/aider/report.py index 3d67e9512..6b0b57828 100644 --- a/aider/report.py +++ b/aider/report.py @@ -7,7 +7,7 @@ import webbrowser from aider import __version__ from aider.urls import github_issues -FENCE = "```" +FENCE = "`"*3 def report_github_issue(issue_text, title=None):