From b0c27eff0b93adac01dbfefb3c64352e6e680cdc Mon Sep 17 00:00:00 2001 From: jesopo Date: Fri, 5 Oct 2018 23:32:20 +0100 Subject: [PATCH] Typo, add missing " --- modules/github.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"])