TriviaTime: update contributors.

This commit is contained in:
oddluck 2020-02-06 23:01:52 +00:00
parent f03202186c
commit 45c5c18fba

View File

@ -25,16 +25,40 @@ __maintainer__ = getattr(supybot.authors, 'oddluck',
# This is a dictionary mapping supybot.Author instances to lists of # This is a dictionary mapping supybot.Author instances to lists of
# contributions. # contributions.
if not hasattr(supybot.authors, 'oddluck'):
supybot.authors.oddluck = supybot.Author('oddluck', '',
'oddluck@riseup.net')
if not hasattr(supybot.authors, 'Tanner'):
supybot.authors.Tanner = supybot.Author('Tanner', 'tann',
'tann@trivialand.org')
if not hasattr(supybot.authors, 'rootcoma'):
supybot.authors.rootcoma = supybot.Author('rootcoma', '', '')
if not hasattr(supybot.authors, 'Th0masR0ss'):
supybot.authors.Th0masR0ss = supybot.Author('Th0masR0ss', '', '')
if not hasattr(supybot.authors, 'loljoho'): if not hasattr(supybot.authors, 'loljoho'):
supybot.authors.loljoho = supybot.Author('loljoho', 'loljo', supybot.authors.loljoho = supybot.Author('loljoho', '', '')
'https://github.com/loljoho')
__contributors__ = {'oddluck', 'loljoho', 'rootcoma', 'Th0masR0ss', 'brrr'} if not hasattr(supybot.authors, 'brrr'):
supybot.authors.brrr = supybot.Author('brrr', '', '')
__contributors__ = {
supybot.authors.oddluck: ['code enhancement'],
supybot.authors.loljoho: ['code enhancement'],
supybot.authors.brrr: ['code enhancement'],
supybot.authors.Th0masR0ss: ['code enhancement'],
supybot.authors.rootcoma: ['code enhancement']}
# This is a url where the most recent plugin package can be downloaded. # This is a url where the most recent plugin package can be downloaded.
__url__ = 'https://github.com/oddluck/limnoria-plugins/' __url__ = 'https://github.com/oddluck/limnoria-plugins/'
from . import config from . import config
from . import plugin from . import plugin
from imp import reload
imp.reload(plugin) # In case we're being reloaded. imp.reload(plugin) # In case we're being reloaded.
# Add more reloads here if you add third-party modules and want them to be # Add more reloads here if you add third-party modules and want them to be
# reloaded when this plugin is reloaded. Don't forget to import them as well! # reloaded when this plugin is reloaded. Don't forget to import them as well!