From 0c1901123eb8e16d9ee66fcd08d31fee9a26d258 Mon Sep 17 00:00:00 2001 From: Sfan5 Date: Fri, 17 Jan 2014 17:50:15 +0100 Subject: [PATCH] [Tell] Apparently is deadlocks.. --- tell.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tell.py b/tell.py index 92ea370..fef71c6 100755 --- a/tell.py +++ b/tell.py @@ -80,7 +80,7 @@ note_join.rule = r'.*' note_join.event = 'JOIN' note_join.priority = 'low' -telldb_lock.acquire() # Just to be safe +#telldb_lock.acquire() # Just to be safe db = sqlite3.connect("tell.sqlite") c = db.cursor() c.execute("CREATE TABLE IF NOT EXISTS tell (nick text, channel text, msg text)") @@ -92,7 +92,7 @@ while True: tell_list.append(e) c.close() db.close() -telldb_lock.acquire() +#telldb_lock.acquire() if __name__ == '__main__': print __doc__.strip()