From 29b3b2ed09707166fa4b8a86cc6cae7a3aa57d20 Mon Sep 17 00:00:00 2001 From: James Lu Date: Mon, 25 Jul 2022 21:37:38 -0700 Subject: [PATCH] develop/httpserver: modernize import and super() calls --- develop/httpserver.rst | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/develop/httpserver.rst b/develop/httpserver.rst index ac89ee1..860a259 100644 --- a/develop/httpserver.rst +++ b/develop/httpserver.rst @@ -42,7 +42,7 @@ Importing the HTTP server On only have to add this line:: - import supybot.httpserver as httpserver. + from supybot import httpserver Creating a callback ------------------- @@ -68,8 +68,7 @@ informations):: class Supystory(callbacks.Plugin): def __init__(self, irc): # Some stuff needed by Supybot - self.__parent = super(Supystory, self) - callbacks.Plugin.__init__(self, irc) + super().__init__(irc) # registering the callback callback = SupystoryServerCallback() # create an instance of the callback @@ -84,7 +83,7 @@ the following:: httpserver.unhook('supystory') # unregister the callback hooked at /supystory # Stuff for Supybot - self.__parent.die() + super().die() Now, you can load your plugin, and you'll see on the server a beautiful link to `/supystory` called `Supystory`. @@ -168,7 +167,7 @@ Here is the code of the callback... pretty much simple, as ever:: - + Error