Conditional & MessageParser: Add description.

This commit is contained in:
Valentin Lorentz 2011-03-01 14:35:40 +01:00
parent 32b21cbc18
commit 2bcfd9e0e5
2 changed files with 5 additions and 4 deletions

View File

@ -38,7 +38,7 @@ import supybot.world as world
# Use this for the version of this plugin. You may wish to put a CVS keyword # 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. # in here if you're keeping the plugin in CVS or some similar system.
__version__ = "" __version__ = "0.1"
# XXX Replace this with an appropriate author or supybot.Author instance. # XXX Replace this with an appropriate author or supybot.Author instance.
__author__ = supybot.authors.unknown __author__ = supybot.authors.unknown

View File

@ -29,8 +29,8 @@
### ###
""" """
Add a description of the plugin (to be presented to the user inside the wizard) MessageParser can be configured to run commands when a message matches a
here. This should describe *what* the plugin does. given trigger.
""" """
import supybot import supybot
@ -38,11 +38,12 @@ import supybot.world as world
# Use this for the version of this plugin. You may wish to put a CVS keyword # 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. # in here if you're keeping the plugin in CVS or some similar system.
__version__ = "" __version__ = "0.1"
# XXX Replace this with an appropriate author or supybot.Author instance. # XXX Replace this with an appropriate author or supybot.Author instance.
__author__ = supybot.authors.unknown __author__ = supybot.authors.unknown
# 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__ = {}