]> kaliko git repositories - sid.git/blobdiff - sid/bts.py
Fixed tell "purge" command
[sid.git] / sid / bts.py
index a19259ae660ee0f52510679ce97e1475348d734c..254a923cd4afa1658405fa0e984cc20bb99ee499 100644 (file)
@@ -24,13 +24,16 @@ from .plugin import Plugin, botcmd
 
 
 class Bugs(Plugin):
-    re_bugs = re_compile('(?<=#)(\d{6,7})')
+    """Gets bugs info from the BTS
+    """
+    re_bugs = re_compile(r'(?<=#)(\d{6,7})')
 
     def __init__(self, bot):
         Plugin.__init__(self, bot)
         bot.add_event_handler("muc::%s::message" % self.bot.room, self.muc_message)
 
     def muc_message(self, msg):
+        """Handler method dealing with MUC incoming messages"""
         # Does not reply to myself
         if msg['mucnick'] == self.bot.nick:
             return