aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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")