Skip to content

Commit 39600bc

Browse files
authored
Merge pull request CloudBotIRC#106 from IlGnome/patch-14
Hopefully enabled .tell to work with orange chat
2 parents 916d41a + 3f012f4 commit 39600bc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

plugins/tell.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ def tell_cmd(text, nick, db, notice, conn):
167167
notice("Invalid nick '{}'.".format(target))
168168
return
169169

170-
if not re.match("^[a-z0-9_|.\-\]\[]*$", target.lower()):
170+
if not re.match("^[a-z0-9_|.\-\`\]\[]*$", target.lower()):
171171
notice("Invalid nick '{}'.".format(target))
172172
return
173173

0 commit comments

Comments
 (0)