mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-26 20:59:27 +01:00
Revert "Aka: update converters to use 'channel' instead of 'somethingWithoutSpaces'"
This reverts commit 231c250b75
.
This commit is contained in:
parent
4a70a9a79c
commit
b76cff73a8
@ -549,7 +549,7 @@ class Aka(callbacks.Plugin):
|
|||||||
except AkaError as e:
|
except AkaError as e:
|
||||||
irc.error(str(e))
|
irc.error(str(e))
|
||||||
add = wrap(add, [getopts({
|
add = wrap(add, [getopts({
|
||||||
'channel': 'channel',
|
'channel': 'somethingWithoutSpaces',
|
||||||
}), 'something', 'text'])
|
}), 'something', 'text'])
|
||||||
|
|
||||||
def set(self, irc, msg, args, optlist, name, alias):
|
def set(self, irc, msg, args, optlist, name, alias):
|
||||||
@ -586,7 +586,7 @@ class Aka(callbacks.Plugin):
|
|||||||
except AkaError as e:
|
except AkaError as e:
|
||||||
irc.error(str(e))
|
irc.error(str(e))
|
||||||
set = wrap(set, [getopts({
|
set = wrap(set, [getopts({
|
||||||
'channel': 'channel',
|
'channel': 'somethingWithoutSpaces',
|
||||||
}), 'something', 'text'])
|
}), 'something', 'text'])
|
||||||
|
|
||||||
def remove(self, irc, msg, args, optlist, name):
|
def remove(self, irc, msg, args, optlist, name):
|
||||||
@ -608,7 +608,7 @@ class Aka(callbacks.Plugin):
|
|||||||
except AkaError as e:
|
except AkaError as e:
|
||||||
irc.error(str(e))
|
irc.error(str(e))
|
||||||
remove = wrap(remove, [getopts({
|
remove = wrap(remove, [getopts({
|
||||||
'channel': 'channel',
|
'channel': 'somethingWithoutSpaces',
|
||||||
}), 'something'])
|
}), 'something'])
|
||||||
|
|
||||||
def _checkManageCapabilities(self, irc, msg, channel):
|
def _checkManageCapabilities(self, irc, msg, channel):
|
||||||
@ -641,7 +641,7 @@ class Aka(callbacks.Plugin):
|
|||||||
else:
|
else:
|
||||||
irc.replySuccess()
|
irc.replySuccess()
|
||||||
lock = wrap(lock, [getopts({
|
lock = wrap(lock, [getopts({
|
||||||
'channel': 'channel',
|
'channel': 'somethingWithoutSpaces',
|
||||||
}), 'user', 'something'])
|
}), 'user', 'something'])
|
||||||
|
|
||||||
def unlock(self, irc, msg, args, optlist, user, name):
|
def unlock(self, irc, msg, args, optlist, user, name):
|
||||||
@ -664,7 +664,7 @@ class Aka(callbacks.Plugin):
|
|||||||
else:
|
else:
|
||||||
irc.replySuccess()
|
irc.replySuccess()
|
||||||
unlock = wrap(unlock, [getopts({
|
unlock = wrap(unlock, [getopts({
|
||||||
'channel': 'channel',
|
'channel': 'somethingWithoutSpaces',
|
||||||
}), 'user', 'something'])
|
}), 'user', 'something'])
|
||||||
|
|
||||||
def show(self, irc, msg, args, optlist, name):
|
def show(self, irc, msg, args, optlist, name):
|
||||||
@ -683,8 +683,8 @@ class Aka(callbacks.Plugin):
|
|||||||
if command:
|
if command:
|
||||||
irc.reply(command)
|
irc.reply(command)
|
||||||
else:
|
else:
|
||||||
irc.error(_('This Aka does not exist.'))
|
irc.error(_('This Aka does not exist'))
|
||||||
show = wrap(show, [getopts({'channel': 'channel'}),
|
show = wrap(show, [getopts({'channel': 'somethingWithoutSpaces'}),
|
||||||
'text'])
|
'text'])
|
||||||
|
|
||||||
def importaliasdatabase(self, irc, msg, args):
|
def importaliasdatabase(self, irc, msg, args):
|
||||||
|
Loading…
Reference in New Issue
Block a user