mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-03 01:39:23 +01:00
Changed eval/exec so that they never even get defined if conf.allowEval isn't True.
This commit is contained in:
parent
17fec22598
commit
da3c0634a9
12
src/Owner.py
12
src/Owner.py
@ -103,7 +103,6 @@ class Owner(privmsgs.CapabilityCheckingPrivmsg):
|
||||
_srcPlugins = ('Admin', 'Channel', 'Config', 'Misc', 'Owner', 'User')
|
||||
def __init__(self):
|
||||
callbacks.Privmsg.__init__(self)
|
||||
if hasattr(self.__class__, '_exec'):
|
||||
setattr(self.__class__, 'exec', self.__class__._exec)
|
||||
self.defaultPlugins = {'list': 'Misc',
|
||||
'capabilities': 'User',
|
||||
@ -251,6 +250,8 @@ class Owner(privmsgs.CapabilityCheckingPrivmsg):
|
||||
except Exception, e:
|
||||
irc.reply(utils.exnToString(e))
|
||||
else:
|
||||
# This should never happen, so I haven't bothered updating
|
||||
# this error string to say --enable-eval.
|
||||
irc.error('You must enable conf.allowEval for that to work.')
|
||||
|
||||
def _exec(self, irc, msg, args):
|
||||
@ -266,7 +267,16 @@ class Owner(privmsgs.CapabilityCheckingPrivmsg):
|
||||
except Exception, e:
|
||||
irc.reply(utils.exnToString(e))
|
||||
else:
|
||||
# This should never happen, so I haven't bothered updating
|
||||
# this error string to say --enable-eval.
|
||||
irc.error('You must enable conf.allowEval for that to work.')
|
||||
else:
|
||||
def eval(self, irc, msg, args):
|
||||
"""Run your bot with --enable-eval if you want this to work."""
|
||||
irc.error('You must give your bot the --enable-eval switch for '
|
||||
'this command to be enabled.')
|
||||
_exec = eval
|
||||
|
||||
|
||||
def ircquote(self, irc, msg, args):
|
||||
"""<string to be sent to the server>
|
||||
|
Loading…
Reference in New Issue
Block a user