From c5e1fafeb1bec1ede20d08c2c19689dd3b02547a Mon Sep 17 00:00:00 2001 From: jesopo Date: Fri, 26 Oct 2018 11:27:50 +0100 Subject: [PATCH] Put a dash between commit message and commit url --- modules/github.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/github.py b/modules/github.py index c3d9fbaf..2ea4d412 100644 --- a/modules/github.py +++ b/modules/github.py @@ -34,7 +34,7 @@ class Module(ModuleManager.BaseModule): removed_count = len(commit["removed"]) url = COMMIT_URL % (full_name, id[:8]) - line = ("(%s) [files: +%d ∆%d -%d] commit by '%s': %s %s" + line = ("(%s) [files: +%d ∆%d -%d] commit by '%s': %s - %s" % (full_name, added_count, modified_count, removed_count, author, message, url)) hooks = [hook for hook in hooks if hook[2]]