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

classes: remove lower() call when storing netname

An hour of debugging protocol/unreal and it turns out the issue was not there, but this.
This commit is contained in:
James Lu 2016-04-02 12:10:56 -07:00
parent 6acfbb4125
commit 16779aa5ce

View File

@ -37,7 +37,7 @@ class Irc():
and a configuration object.
"""
self.loghandlers = []
self.name = netname.lower()
self.name = netname
self.conf = conf
self.serverdata = conf['servers'][netname]
self.sid = self.serverdata["sid"]