From feec31c40c994d01b9672ae98b50b93f18651976 Mon Sep 17 00:00:00 2001 From: Andreas Arvidsson Date: Sun, 1 Dec 2024 10:19:41 +0100 Subject: [PATCH] Update message --- cursorless-talon/src/check_community_repo.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/cursorless-talon/src/check_community_repo.py b/cursorless-talon/src/check_community_repo.py index 1af5272336..86bf9c0669 100644 --- a/cursorless-talon/src/check_community_repo.py +++ b/cursorless-talon/src/check_community_repo.py @@ -26,9 +26,11 @@ def on_ready(): if missing_actions: errors.append(f"Missing actions: {', '.join(missing_actions)}") if errors: - errors.insert(0, "https://github.com/talonhub/community") - message = "\n".join(errors) - app.notify("Cursorless missing community repository", body=message) + print("\n".join(errors)) + app.notify( + "Cursorless missing community repository", + body="https://github.com/talonhub/community", + ) app.register("ready", on_ready)