[pybot-commits] CVS: pybot/pybot/modules log.py,1.12,1.13
Brought to you by:
niemeyer
From: Gustavo N. <nie...@us...> - 2003-05-20 17:06:56
|
Update of /cvsroot/pybot/pybot/pybot/modules In directory sc8-pr-cvs1:/tmp/cvs-serv13759 Modified Files: log.py Log Message: Logs were being shown in the wrong order. Index: log.py =================================================================== RCS file: /cvsroot/pybot/pybot/pybot/modules/log.py,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** log.py 12 May 2003 22:18:07 -0000 1.12 --- log.py 20 May 2003 17:06:53 -0000 1.13 *************** *** 108,112 **** cursor = db.cursor() cursor.execute("select * from log where src != '' and dest != '' " ! "order by timestamp desc") row = cursor.fetchone() while row: --- 108,112 ---- cursor = db.cursor() cursor.execute("select * from log where src != '' and dest != '' " ! "order by timestamp") row = cursor.fetchone() while row: |