From 51f10dbb608e7b51ca39ad3c9ba4ee253ac5b634 Mon Sep 17 00:00:00 2001 From: James Lu Date: Wed, 1 Jan 2020 21:56:40 -0800 Subject: [PATCH] SedRegex: update plugin metadata --- plugins/SedRegex/__init__.py | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/plugins/SedRegex/__init__.py b/plugins/SedRegex/__init__.py index e5ba5725e..c0c17b85b 100644 --- a/plugins/SedRegex/__init__.py +++ b/plugins/SedRegex/__init__.py @@ -1,6 +1,6 @@ ### # Copyright (c) 2015, Michael Daniel Telatynski -# Copyright (c) 2015-2016, James Lu +# Copyright (c) 2015-2020, James Lu # All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -36,21 +36,20 @@ History replacer using sed-style expressions. import supybot import supybot.world as world -__version__ = "2016.02.28.1+git" +__version__ = supybot.version.version __author__ = supybot.Author("Michael Daniel Telatynski", "t3chguy", "postmaster@webdevguru.co.uk") -__contributors__ = {supybot.Author("James Lu", "GLolol", "glolol@overdrivenetworks.com"): +__contributors__ = {supybot.authors.jlu: ["options bolding the replacement text", "misc. bug fixes and enhancements"], supybot.Author('nyuszika7h', 'nyuszika7h', 'nyuszika7h@openmailbox.org'): ["_unpack_sed method within plugin.py"] } -__maintainer__ = getattr(supybot.authors, 'jlu', - supybot.Author('James Lu', 'GLolol', 'james@overdrivenetworks.com')) +__maintainer__ = supybot.authors.limnoria_core -__url__ = 'https://github.com/jlu5/SupyPlugins' +__url__ = 'https://github.com/ProgVal/Limnoria/tree/master/plugins/SedRegex' from . import config from . import plugin -from imp import reload +from importlib import reload reload(config) reload(plugin)