From 1145541155f4fdfca8d86ed14a4df51cc43b98ee Mon Sep 17 00:00:00 2001 From: Mark Veidemanis Date: Sat, 25 Nov 2017 19:26:13 +0000 Subject: [PATCH] Fix format string on unsetting variables --- threshold | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/threshold b/threshold index e26c8cd..f38e9e7 100755 --- a/threshold +++ b/threshold @@ -683,7 +683,7 @@ class Helper(object): IRCPool[spl[1]].refresh() self.savePool() if toUnset: - success("Successfully unset key %s on %s" % (spl[2], spl[3], spl[1])) + success("Successfully unset key %s on %s" % (spl[2], spl[1])) else: success("Successfully set key %s to %s on %s" % (spl[2], spl[3], spl[1])) return