aboutsummaryrefslogtreecommitdiff
path: root/modules/github.py
diff options
context:
space:
mode:
authorGravatar jesopo2018-10-05 23:32:20 +0100
committerGravatar jesopo2018-10-05 23:32:20 +0100
commitb0c27eff0b93adac01dbfefb3c64352e6e680cdc (patch)
treec15ea95dc302c1e5b22738f8ad9f4a13f456f417 /modules/github.py
parentAdd the basics of a github webhook in modules/github.py (diff)
signature
Typo, add missing "
Diffstat (limited to 'modules/github.py')
-rw-r--r--modules/github.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/github.py b/modules/github.py
index e0305d69..268c43ad 100644
--- a/modules/github.py
+++ b/modules/github.py
@@ -17,7 +17,7 @@ class Module(ModuleManager.BaseModule):
id = command["id"]
message = commit["message"]
author = "%s <%s>" % (commit["author"]["username"],
- commit["author"]["email])
+ commit["author"]["email"])
modified_count = len(commit["modified"])
added_count = len(commit["added"])
removed_count = len(commit["removed"])