Fixed #untrust

This commit is contained in:
Juhani Haverinen 2013-09-25 18:27:48 +03:00
parent 0203c401ca
commit 6919b6965f
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ def addtrusted(nick):
def rmtrusted(nick):
trustedlock.acquire()
if nick in trusted:
del trusted[nick]
trusted.remove(nick)
trustedlock.release()
def loadtrusted():