From 689c0dd45b8005a093eef471a8eb7d6b56803aa5 Mon Sep 17 00:00:00 2001 From: James Lu Date: Sat, 20 Aug 2016 17:36:24 -0700 Subject: [PATCH] relay: {} are valid nick chars too... (cherry picked from commit b572c58223c6d9b2e7ec0045f809767bebffe625) --- plugins/relay.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/relay.py b/plugins/relay.py index 27f1692..6aed4c4 100644 --- a/plugins/relay.py +++ b/plugins/relay.py @@ -91,7 +91,7 @@ def die(sourceirc): log.debug("Relay: cancelling exportDB timer thread %s due to die()", threading.get_ident()) exportdb_timer.cancel() -allowed_chars = string.digits + string.ascii_letters + '/^|\\-_[]`' +allowed_chars = string.digits + string.ascii_letters + '/^|\\-_[]{}`' fallback_separator = '|' def normalizeNick(irc, netname, nick, times_tagged=0, uid=''): """