Skip to content

Commit 3f012f4

Browse files
authored
Hopefully enabled .tell to work with orange chat
Double check the regex as its all voodoo to me.
1 parent cdda862 commit 3f012f4

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)