]> kaliko git repositories - sid.git/blobdiff - sid/sid.py
Allow space in front of prefix
[sid.git] / sid / sid.py
index 24f543f6e60d6ed3cdd7efbd86f24b3e3d03bb3c..726f7fa9888fac496725022596f23fb0463f31aa 100644 (file)
@@ -89,15 +89,14 @@ class MUCBot(sleekxmpp.ClientXMPP):
 
     def muc_message(self, msg):
         # ignore message from self
-        body = msg['body']
+        body = msg['body'].strip()
         mucfrom = msg['mucnic']
         if msg['mucnick'] == self.nick:
-            self.log.debug('ignoring message from me')
             return
         if not body.startswith(MUCBot.prefix):
             return
         args = body[1:].split()
-        cmd= args.pop(0)
+        cmd = args.pop(0)
         if cmd not in self.commands:
             return
         self.log.debug('cmd: {0}'.format(cmd))
@@ -106,9 +105,11 @@ class MUCBot(sleekxmpp.ClientXMPP):
         try:
             reply = self.commands[cmd](msg, args)
         except Exception as err:
-            reply = traceback.format_exc(err)
+            reply = ''.join(traceback.format_exc())
             self.log.exception('An error occurred processing: {0}: {1}'.format(body, reply))
-        self.log.debug(reply)
+            self.log.info(self.log.level)
+            if self.log.level >= 20 or not reply:
+                return
         self.send_message(mto=msg['from'].bare, mbody=reply, mtype='groupchat')
 
     def start(self, event):
@@ -158,7 +159,6 @@ class MUCBot(sleekxmpp.ClientXMPP):
         """Returns a help string listing available options.
 
         Automatically assigned to the "help" command."""
-        self.log.info(args)
         help_cmd = ('Type {}help <command name>'.format(self.prefix) +
                     ' to get more info about that specific command.')
         if not args:
@@ -178,8 +178,6 @@ class MUCBot(sleekxmpp.ClientXMPP):
             usage = usage + '\n\n' + help_cmd
             text = '{}\n\n{}'.format(description, usage)
         else:
-            self.log.debug(args[0])
-            self.log.debug(args[0] in self.commands.keys())
             if args[0] in self.commands.keys():
                 text = self.commands[args[0]].__doc__.strip() or 'undocumented'
             else: