[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[minion-cvs] Add a missing space to a SQL command.
Update of /home/minion/cvsroot/src/minion/lib/mixminion/server
In directory moria:/tmp/cvs-serv1755/lib/mixminion/server
Modified Files:
Pinger.py
Log Message:
Add a missing space to a SQL command.
Index: Pinger.py
===================================================================
RCS file: /home/minion/cvsroot/src/minion/lib/mixminion/server/Pinger.py,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -d -r1.31 -r1.32
--- Pinger.py 2 Nov 2007 03:41:09 -0000 1.31
+++ Pinger.py 31 Dec 2007 21:02:56 -0000 1.32
@@ -1060,7 +1060,7 @@
cur.execute("SELECT identity,startAt,endAt,nSent,nReceived,"
" latency,reliability "
"FROM echolotOneHopResult, statsInterval, server "
- "WHERE startat >= %s AND startat <= %s"
+ "WHERE startat >= %s AND startat <= %s "
"AND echolotOneHopResult.server = server.id "
"AND echolotOneHopResult.interval = statsInterval.id "
"ORDER BY identity, startat", (since, now))