3
0
mirror of https://github.com/jlu5/PyLink.git synced 2025-01-11 20:52:42 +01:00

Revert "relay_clientbot: lowercase network name (stylistic choice)"

This reverts commit 42da216f5d.
This commit is contained in:
James Lu 2016-08-21 17:28:26 -07:00
parent a546bae341
commit 5444b808b1

View File

@ -89,7 +89,7 @@ def cb_relay_core(irc, source, command, args):
log.debug('(%s) relay_cb_core: Original sender found as %s', irc.name, origuser) log.debug('(%s) relay_cb_core: Original sender found as %s', irc.name, origuser)
netname = origuser[0] netname = origuser[0]
try: # Try to get the full network name try: # Try to get the full network name
netname = conf.conf['servers'][netname]['netname'].lower() netname = conf.conf['servers'][netname]['netname']
except KeyError: except KeyError:
pass pass