]> kaliko git repositories - sid.git/commitdiff
Some cleanup and reformatting.
authorkaliko <kaliko@azylum.org>
Wed, 6 May 2020 15:13:11 +0000 (17:13 +0200)
committerkaliko <kaliko@azylum.org>
Wed, 6 May 2020 15:13:11 +0000 (17:13 +0200)
sid/archive.py
sid/bts.py
sid/echo.py
sid/lib.py
sid/ping.py
sid/plugin.py

index 9fb0f2ee01ced57bfaf71630eb3c9b0f53f415ed..b8cbfa408b22fa215f5055baf292d584671fd8e0 100644 (file)
@@ -32,7 +32,7 @@ class Archive(Plugin):
 
     @botcmd
     def archive(self, rcv, args):
-        """Fetch pkg info from the archive:
+        """Fetch pkg versions info from the archive:
 
         !archive pkg-name : Returns package versions (by suite)
         """
index b39197ce7a46060db3ec09205894b5f554793d85..1a7fea46640ceb48340ec85191f6085adad5d7c0 100644 (file)
@@ -31,7 +31,8 @@ class Bugs(Plugin):
 
     def __init__(self, bot):
         Plugin.__init__(self, bot)
-        bot.add_event_handler("muc::%s::message" % self.bot.room, self.muc_message)
+        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"""
@@ -83,11 +84,9 @@ class Bugs(Plugin):
             return
         reports = debianbts.get_status(reports_ids)
         reports = sorted(reports, key=lambda r: r.date)
-        rprt_nb = len(reports)
-        msg = ['Open reports for {1} (total {0})'.format(rprt_nb, pkg.string)]
+        msg = ['Latest reports for {1} (total {0})'.format(len(reports), pkg.string)]
         # Reverse and take last reports
         for rep in reports[::-1][:4]:
             msg.append('{r.bug_num}: {r.date:%Y-%m-%d} {r.subject}'.format(r=rep))
         message = {'mbody': '\n'.join(msg)}
         self.reply(rcv, message)
-
index f19f7dc53f37ffe0f310c0e41b44e51aea94f0d5..90ccd900dfc42ff9a2956d21b6220cd547a1a513 100644 (file)
@@ -17,6 +17,7 @@
 
 from .plugin import Plugin, botcmd
 
+
 class Echo(Plugin):
     """Drop a message to be sent when someone gets online.
     """
@@ -30,7 +31,8 @@ class Echo(Plugin):
         # any presences you send yourself. To limit event handling
         # to a single room, use the events muc::room@server::presence,
         # muc::room@server::got_online, or muc::room@server::got_offline.
-        bot.add_event_handler("muc::%s::presence" %    self.bot.room, self.log_presence)
+        bot.add_event_handler("muc::%s::presence" %
+                              self.bot.room, self.log_presence)
 
     def log_presence(self, pres):
         """Register presence"""
index eeb99ff0cca1d9fe09af45fdc5cc49b93173dc39..bc8fbedbdffbbf17fa197320e03b2ef534de83f4 100644 (file)
@@ -1,5 +1,19 @@
 # coding: utf-8
 
+# Copyright (C) 2020 kaliko <kaliko@azylum.org>
+
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, version 3 only.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
 import json
 import logging
 
@@ -24,7 +38,6 @@ def get_pkg(pkg):
     try:
         response = urlopen(req)
         ans = response.read()
-        #print(response.getcode())
     except HTTPError as err:
         logger.info('The server couldn\'t fulfill the request.')
         logger.debug('Error code: %s', err.code)
index 4f3f44ff6cc4c69cbff4324ed00f5e67645fc992..3476e7a333b7f91c9a244cd9a030cff8e94a083c 100644 (file)
@@ -16,6 +16,7 @@
 
 from .plugin import Plugin, botcmd
 
+
 class Ping(Plugin):
     PongURL = 'http://upload.wikimedia.org/wikipedia/commons/f/f8/Pong.png'
 
index 6db1d5984f07875af599dd694393ba0aeb8f69c2..b21cff9e0897c556d0248abc3cd4ae2e68bcfb54 100644 (file)
@@ -17,6 +17,7 @@
 
 from .sid import botcmd
 
+
 class Plugin:
     """
     Simple Plugin object to derive from: