Planner: add migration script to drop planner tables from autotest_web database
[autotest-zwu.git] / tko / retrieve_jobs
blob74bdbca6716b2004384368258f34f2f23dd86997
1 #!/usr/bin/python
2 import sys, db
4 try:
5 arg = sys.argv[1]
6 except:
7 arg = ''
9 db = db.db()
10 for record in db.select('* from tko_jobs ' + arg):
11 print record