aboutsummaryrefslogtreecommitdiff
path: root/modules/github.py
diff options
context:
space:
mode:
authorGravatar jesopo2018-10-08 15:09:28 +0100
committerGravatar jesopo2018-10-08 15:09:28 +0100
commit639b21f145290b25085aa7492d50eaf48edf045b (patch)
tree628d6a0a03b13585d7bac1c3221c5656d75f2e56 /modules/github.py
parent.strip("\n") from !rust API call return (diff)
signature
Make git commit "add/mod/del" more concise
Diffstat (limited to 'modules/github.py')
-rw-r--r--modules/github.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/github.py b/modules/github.py
index 4fea5b2e..aaeaaa33 100644
--- a/modules/github.py
+++ b/modules/github.py
@@ -30,8 +30,8 @@ class Module(ModuleManager.BaseModule):
added_count = len(commit["added"])
removed_count = len(commit["removed"])
- line = ("(%s) [files: %d/%d/%d mod/add/del] commit by '%s': %s"
- % (full_name, modified_count, added_count,
+ line = ("(%s) [files: +%d ∆%d -%d] commit by '%s': %s"
+ % (full_name, added_count, modified_count,
removed_count, author, message))
hooks = self.bot.database.channel_settings.find_by_setting(
"github-hook")