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

relay: {} are valid nick chars too...

(cherry picked from commit b572c58223)
This commit is contained in:
James Lu 2016-08-20 17:36:24 -07:00
parent a1e7c89027
commit 689c0dd45b

View File

@ -91,7 +91,7 @@ def die(sourceirc):
log.debug("Relay: cancelling exportDB timer thread %s due to die()", threading.get_ident()) log.debug("Relay: cancelling exportDB timer thread %s due to die()", threading.get_ident())
exportdb_timer.cancel() exportdb_timer.cancel()
allowed_chars = string.digits + string.ascii_letters + '/^|\\-_[]`' allowed_chars = string.digits + string.ascii_letters + '/^|\\-_[]{}`'
fallback_separator = '|' fallback_separator = '|'
def normalizeNick(irc, netname, nick, times_tagged=0, uid=''): def normalizeNick(irc, netname, nick, times_tagged=0, uid=''):
""" """