diff --git a/plugins/Aka/plugin.py b/plugins/Aka/plugin.py index f03df25a9..ca1d0be3d 100644 --- a/plugins/Aka/plugin.py +++ b/plugins/Aka/plugin.py @@ -681,7 +681,10 @@ class Aka(callbacks.Plugin): Raise=True) channel = arg command = self._db.get_alias(channel, name) - irc.reply(command) + if command: + irc.reply(command) + else: + irc.error(_('This Aka does not exist')) show = wrap(show, [getopts({'channel': 'somethingWithoutSpaces'}), 'text'])