Fix format string on unsetting variables

This commit is contained in:
Mark Veidemanis 2017-11-25 19:26:13 +00:00
parent 1a17d04947
commit 1145541155
1 changed files with 1 additions and 1 deletions

View File

@ -683,7 +683,7 @@ class Helper(object):
IRCPool[spl[1]].refresh() IRCPool[spl[1]].refresh()
self.savePool() self.savePool()
if toUnset: 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: else:
success("Successfully set key %s to %s on %s" % (spl[2], spl[3], spl[1])) success("Successfully set key %s to %s on %s" % (spl[2], spl[3], spl[1]))
return return