format_token_replace() returns a tuple these days
This commit is contained in:
parent
61f050e329
commit
31eb503df1
1 changed files with 2 additions and 1 deletions
|
@ -14,7 +14,8 @@ class Module(ModuleManager.BaseModule):
|
||||||
vars["u"] = vars["username"] = user.username
|
vars["u"] = vars["username"] = user.username
|
||||||
vars["h"] = vars["hostname"] = user.hostname
|
vars["h"] = vars["hostname"] = user.hostname
|
||||||
vars["a"] = vars["account"] = user.account or ""
|
vars["a"] = vars["account"] = user.account or ""
|
||||||
return utils.parse.format_token_replace(s, vars)
|
missing, out = utils.parse.format_token_replace(s, vars)
|
||||||
|
return out
|
||||||
@utils.export("ban-mask")
|
@utils.export("ban-mask")
|
||||||
def banmask(self, server, channel, user):
|
def banmask(self, server, channel, user):
|
||||||
format = channel.get_setting("ban-format",
|
format = channel.get_setting("ban-format",
|
||||||
|
|
Loading…
Reference in a new issue