From b17c8d79bfd74dd2149268b36154e7a024917b4c Mon Sep 17 00:00:00 2001 From: jesopo Date: Sat, 17 Nov 2018 21:12:12 +0000 Subject: [PATCH] Remove additional '%s' in modules/github.py.delete that was left over from copypaste of `create` --- modules/github.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/github.py b/modules/github.py index 4ae584ce..9cad0aa1 100644 --- a/modules/github.py +++ b/modules/github.py @@ -197,5 +197,5 @@ class Module(ModuleManager.BaseModule): ref = data["ref"] type = data["ref_type"] sender = utils.irc.bold(data["sender"]["login"]) - return ["(%s) %s deleted a %s: %s - %s" % + return ["(%s) %s deleted a %s: %s" % (full_name, sender, type, ref)]