]> git.aero2k.de Git - urlbot-v3.git/commitdiff
add nick to info
authorThorsten S <mail@aero2k.de>
Thu, 9 Feb 2023 20:31:49 +0000 (21:31 +0100)
committerThorsten S <mail@aero2k.de>
Thu, 9 Feb 2023 20:31:49 +0000 (21:31 +0100)
distbot/plugins/meta.py

index 5f90d64c82d4de9f8c1e5c637733eba572fd28d0..f2796795e52b3eebf25a39db75f3693c1b071037 100644 (file)
@@ -45,11 +45,10 @@ class Info(Worker):
     def parse_body(self, msg):
         # TODO not totally true regarding task and rate limiting
         if "info" in self.used_channel:
-            return Action(msg=''': I'm a bot, my job is to extract <title> tags from posted URLs. In case I'm annoying or for further
-                questions, please talk to my master %s. I'm rate limited.
+            return Action(msg=f""": I'm a bot named {conf_get('bot_nickname')}, my job is to extract <title> tags from posted URLs. In case I'm annoying or for further
+                questions, please talk to my master {conf_get('bot_owner')}. I'm rate limited.
                 To make me exit immediately, highlight me with 'hangup' in the message
-                (emergency only, please). For other commands, highlight me with 'help'.''' % (
-                conf_get('bot_owner')))
+                (emergency only, please). For other commands, highlight me with 'help'.""")
         else:
             return Action(msg='My source code can be found at %s' % conf_get('src-url'))