From 2a978c498e1a4523b8d83aed62e629a501f2686d Mon Sep 17 00:00:00 2001 From: James Lu Date: Thu, 15 Jun 2017 21:55:08 -0700 Subject: [PATCH] Rename PyLinkIRCNetwork -> IRCNetwork The "PyLink" prefix is sort of redundant here... --- classes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/classes.py b/classes.py index 76187bd..a6c9753 100644 --- a/classes.py +++ b/classes.py @@ -940,7 +940,7 @@ class PyLinkNetworkCoreWithUtils(PyLinkNetworkCore): result = not result return result -class PyLinkIRCNetwork(PyLinkNetworkCoreWithUtils): +class IRCNetwork(PyLinkNetworkCoreWithUtils): def __init__(self, *args): super().__init__(*args) if world.testing: @@ -1258,7 +1258,7 @@ class PyLinkIRCNetwork(PyLinkNetworkCoreWithUtils): else: break -Irc = PyLinkIRCNetwork +Irc = IRCNetwork class User(): """PyLink IRC user class."""