X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=dak%2Fdakdb%2Fupdate22.py;h=dbd7ced6023c1d3bf77b7c225ca1a4e4361d8211;hb=ec257c02a5d62fd27844c70814acd9616b24b4c8;hp=b6fbbb447b37ac776085ca91efeb1449f63fd21f;hpb=b96fec590c5123bd91db1144ae813e2a133f3571;p=dak.git diff --git a/dak/dakdb/update22.py b/dak/dakdb/update22.py index b6fbbb44..dbd7ced6 100755 --- a/dak/dakdb/update22.py +++ b/dak/dakdb/update22.py @@ -69,7 +69,7 @@ def do_update(self): for q in c.fetchall(): queues[q[0]] = q[1] - if q[1] in ['accepted', 'buildd']: + if q[1] in ['accepted', 'buildd', 'embargoed', 'unembargoed']: # Move to build_queue_table c.execute("""INSERT INTO build_queue (queue_name, path, copy_files) VALUES ('%s', '%s', '%s')""" % (q[1], q[2], q[3]))