aboutsummaryrefslogtreecommitdiff
path: root/modules/github.py
diff options
context:
space:
mode:
authorGravatar jesopo2019-01-16 22:14:26 +0000
committerGravatar jesopo2019-01-16 22:14:26 +0000
commitf9bf1d03e8fa50fead8fa67b06209a1094f7835f (patch)
tree22916d524ef2d62b3ffce9ebc1866d8e088a5b42 /modules/github.py
parentSupport organisation membership event (github.py) (diff)
signature
Correct order of string formatting for github membership events (github.py)
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 e21d4a52..849adaa2 100644
--- a/modules/github.py
+++ b/modules/github.py
@@ -395,5 +395,5 @@ class Module(ModuleManager.BaseModule):
def membership(self, event, organisation, data):
return ["%s %s %s to team %s" %
- (data["action"], data["sender"]["login"], data["member"]["login"],
+ (data["sender"]["login"], data["action"], data["member"]["login"],
data["team"]["name"])]