diff --git a/github_app_geo_project/module/audit/__init__.py b/github_app_geo_project/module/audit/__init__.py index bd926a0f66..55a2feb804 100644 --- a/github_app_geo_project/module/audit/__init__.py +++ b/github_app_geo_project/module/audit/__init__.py @@ -193,7 +193,7 @@ async def _process_snyk_dpkg( if output_url is not None: short_message.append(f"[Output]({output_url})") if body_md: - body_md += "\n" + body_md += "\n\n" body_md += f"[Output]({output_url})" if output_url is not None else "" if context.module_event_data.type == "dpkg": diff --git a/github_app_geo_project/module/pull_request/checks.py b/github_app_geo_project/module/pull_request/checks.py index 02cfd997a9..a71f975428 100644 --- a/github_app_geo_project/module/pull_request/checks.py +++ b/github_app_geo_project/module/pull_request/checks.py @@ -37,7 +37,7 @@ def _get_code_spell_command( config = context.module_config code_spell_config = config.get("codespell", {}) code_spell_config = code_spell_config if isinstance(code_spell_config, dict) else {} - command = ["/usr/local/bin/codespell"] + command = ["/venv/bin/codespell"] for spell_ignore_file in ( ".github/spell-ignore-words.txt", "spell-ignore-words.txt",