From 45c5c18fba2d96e6b28b386cb9ef77d2fb9a1fe3 Mon Sep 17 00:00:00 2001 From: oddluck <39967334+oddluck@users.noreply.github.com> Date: Thu, 6 Feb 2020 23:01:52 +0000 Subject: [PATCH] TriviaTime: update contributors. --- TriviaTime/__init__.py | 30 +++++++++++++++++++++++++++--- 1 file changed, 27 insertions(+), 3 deletions(-) diff --git a/TriviaTime/__init__.py b/TriviaTime/__init__.py index 4ab831d..9c16c55 100644 --- a/TriviaTime/__init__.py +++ b/TriviaTime/__init__.py @@ -25,16 +25,40 @@ __maintainer__ = getattr(supybot.authors, 'oddluck', # This is a dictionary mapping supybot.Author instances to lists of # 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'): - supybot.authors.loljoho = supybot.Author('loljoho', 'loljo', - 'https://github.com/loljoho') -__contributors__ = {'oddluck', 'loljoho', 'rootcoma', 'Th0masR0ss', 'brrr'} + supybot.authors.loljoho = supybot.Author('loljoho', '', '') + +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. __url__ = 'https://github.com/oddluck/limnoria-plugins/' from . import config from . import plugin +from imp import reload imp.reload(plugin) # In case we're being reloaded. # 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!