mirror of
https://github.com/jlu5/PyLink.git
synced 2024-11-01 01:09:22 +01:00
17 lines
592 B
Python
17 lines
592 B
Python
"""
|
|
nefarious.py: Migration stub to the new P10 protocol module.
|
|
"""
|
|
|
|
from pylinkirc.log import log
|
|
from pylinkirc.protocols.p10 import *
|
|
|
|
class NefariousProtocol(P10Protocol):
|
|
def __init__(self, *args, **kwargs):
|
|
super().__init__(*args, **kwargs)
|
|
log.warning("(%s) protocols/nefarious.py has been renamed to protocols/p10.py, which "
|
|
"now also supports other IRCu variants. Please update your configuration, "
|
|
"as this migration stub will be removed in a future version.",
|
|
self.name)
|
|
|
|
Class = NefariousProtocol
|