aboutsummaryrefslogtreecommitdiff
path: root/modules/github.py
diff options
context:
space:
mode:
Diffstat (limited to 'modules/github.py')
-rw-r--r--modules/github.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/github.py b/modules/github.py
index ab5744b2..b21b0f36 100644
--- a/modules/github.py
+++ b/modules/github.py
@@ -29,9 +29,9 @@ 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,
- removed_count, author, message)
+ line = ("(%s) [files: %d/%d/%d mod/add/del] commit by '%s': %s"
+ % (full_name, modified_count, added_count,
+ removed_count, author, message))
hooks = self.bot.database.channel_settings.find_by_setting(
"github-hook")
hooks = [hook for hook in hooks if hook[2]]