Fix sqlite
This commit is contained in:
parent
cdc3f5ad32
commit
f0d6cb769a
1 changed files with 1 additions and 1 deletions
|
@ -90,7 +90,7 @@ class GdbCatSumfileCommand(steps.ShellCommand):
|
|||
|
||||
con = sqlite3.connect (db_file)
|
||||
c = con.cursor ()
|
||||
c.execute ('SELECT commitid WHERE branch = "%s" AND trysched = 0 FROM logs ORDER BY timestamp DESC LIMIT 1' % branch)
|
||||
c.execute ('SELECT commitid FROM logs WHERE branch = "%s" AND trysched = 0 ORDER BY timestamp DESC LIMIT 1' % branch)
|
||||
prev = c.fetchone ()
|
||||
con.close ()
|
||||
|
||||
|
|
Loading…
Reference in a new issue