Skip to content

Commit bac6708

Browse files
committed
Merge pull request #139 from edwardslabs/python3.4
lowercase comparison
2 parents 18d856a + b34cd07 commit bac6708

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
@@ -88,7 +88,7 @@ def add_tell(db, server, sender, target, message):
8888

8989
def tell_check(conn, nick):
9090
for _conn, _target in tell_cache:
91-
if (conn, nick) == (_conn, _target):
91+
if (conn, nick.lower()) == (_conn, _target):
9292
return True
9393
else:
9494
continue

0 commit comments

Comments
 (0)