From 92466e4a006105317e8f94c48a6be2d1055861e8 Mon Sep 17 00:00:00 2001 From: James Lu Date: Mon, 11 Jul 2016 23:35:16 -0700 Subject: [PATCH] relay: make tag_nicks default to True --- plugins/relay.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/relay.py b/plugins/relay.py index 96059ea..65263ae 100644 --- a/plugins/relay.py +++ b/plugins/relay.py @@ -106,7 +106,7 @@ def normalizeNick(irc, netname, nick, times_tagged=0, uid=''): conf.conf.get('relay', {}).get('separator') or "/" # Figure out whether we tag nicks by default or not. - if times_tagged == 0 and conf.conf.get('relay', {}).get('tag_nicks'): + if times_tagged == 0 and conf.conf.get('relay', {}).get('tag_nicks', True): times_tagged = 1 log.debug('(%s) relay.normalizeNick: using %r as separator.', irc.name, separator)