diff options
| author | 2018-10-26 11:27:50 +0100 | |
|---|---|---|
| committer | 2018-10-26 11:28:01 +0100 | |
| commit | c5e1fafeb1bec1ede20d08c2c19689dd3b02547a (patch) | |
| tree | 4510b974fd3e031e32fa18659eed23340282c175 /modules/github.py | |
| parent | Put commit urls on github webhook notices in modules/github.py (diff) | |
| signature | ||
Put a dash between commit message and commit url
Diffstat (limited to 'modules/github.py')
| -rw-r--r-- | modules/github.py | 2 |
1 files changed, 1 insertions, 1 deletions
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]] |
