diff --git a/plugins/SedRegex/__init__.py b/plugins/SedRegex/__init__.py index 25b4daa63..8c15e17f6 100644 --- a/plugins/SedRegex/__init__.py +++ b/plugins/SedRegex/__init__.py @@ -43,7 +43,7 @@ __contributors__ = {supybot.Author("James Lu", "GLolol", "glolol@overdrivenetwor supybot.Author('nyuszika7h', 'nyuszika7h', 'nyuszika7h@openmailbox.org'): ["_unpack_sed method within plugin.py"] } -__url__ = 'https://github.com/GLolol/SupyPlugins' +__url__ = 'https://github.com/jlu5/SupyPlugins' from . import config from . import plugin diff --git a/plugins/SedRegex/plugin.py b/plugins/SedRegex/plugin.py index 55945f3bc..cacff350f 100644 --- a/plugins/SedRegex/plugin.py +++ b/plugins/SedRegex/plugin.py @@ -49,7 +49,7 @@ except ImportError: if sys.version_info[0] < 3: raise ImportError('This plugin requires Python 3. For a legacy version of this plugin that still ' 'supports Python 2, consult the python2-legacy branch at ' - 'https://github.com/GLolol/SupyPlugins/tree/python2-legacy') + 'https://github.com/jlu5/SupyPlugins/tree/python2-legacy') SED_REGEX = re.compile(r"^(?:(?P.+?)[:,] )?s(?P[^\w\s])(?P.*?)(?P=delim)" r"(?P.*?)(?P=delim)(?P[a-z]*)$")