3
0
mirror of https://github.com/jlu5/PyLink.git synced 2024-11-27 13:09:23 +01:00

Rename PyLinkIRCNetwork -> IRCNetwork

The "PyLink" prefix is sort of redundant here...
This commit is contained in:
James Lu 2017-06-15 21:55:08 -07:00
parent c4f6d626d5
commit 2a978c498e

View File

@ -940,7 +940,7 @@ class PyLinkNetworkCoreWithUtils(PyLinkNetworkCore):
result = not result result = not result
return result return result
class PyLinkIRCNetwork(PyLinkNetworkCoreWithUtils): class IRCNetwork(PyLinkNetworkCoreWithUtils):
def __init__(self, *args): def __init__(self, *args):
super().__init__(*args) super().__init__(*args)
if world.testing: if world.testing:
@ -1258,7 +1258,7 @@ class PyLinkIRCNetwork(PyLinkNetworkCoreWithUtils):
else: else:
break break
Irc = PyLinkIRCNetwork Irc = IRCNetwork
class User(): class User():
"""PyLink IRC user class.""" """PyLink IRC user class."""