Plugin: update plugin description in __init__.py

Also remove some outdated comments.
This commit is contained in:
James Lu 2019-10-19 11:27:11 -07:00
parent 75a96ffa17
commit e3d89875ae

View File

@ -29,20 +29,14 @@
""" """
This plugin handles various plugin-related things, such as getting help for This plugin handles various plugin-related things, such as getting help for
a plugin, getting a list of the loaded plugins, and searching and downloading a plugin or retrieving author info.
plugins from supybot.com.
""" """
import supybot import supybot
import supybot.world as world import supybot.world as world
# Use this for the version of this plugin. You may wish to put a CVS keyword
# in here if you're keeping the plugin in CVS or some similar system.
__version__ = "%%VERSION%%" __version__ = "%%VERSION%%"
# XXX Replace this with an appropriate author or supybot.Author instance.
__author__ = supybot.authors.jemfinch __author__ = supybot.authors.jemfinch
# This is a dictionary mapping supybot.Author instances to lists of # This is a dictionary mapping supybot.Author instances to lists of
# contributions. # contributions.
__contributors__ = { __contributors__ = {
@ -50,7 +44,6 @@ __contributors__ = {
} }
from . import config from . import config
# This had to be renamed because of stupid case-insensitivity issues.
from . import plugin from . import plugin
from imp import reload from imp import reload
reload(plugin) # In case we're being reloaded. reload(plugin) # In case we're being reloaded.