This commit is contained in:
Luke Rogers 2014-02-21 14:55:33 +13:00
parent 2d90288856
commit 87b1d3d7f4
6 changed files with 21 additions and 13 deletions

View file

@ -23,8 +23,7 @@ def db_init(db):
def get_tells(db, user_to):
return db.execute("select user_from, message, time, chan from tell where"
" user_to=lower(:user) order by time",
{'user': user_to}).fetchall()
" user_to=lower(:user) order by time", {'user': user_to}).fetchall()
@hook.singlethread