Fix format string on unsetting variables
This commit is contained in:
parent
1a17d04947
commit
1145541155
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue