X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=dak%2Ftransitions.py;h=808831b1cd49f66dbc67de49babc5532400256bf;hb=782339bc8e1a2e17b9e6b3009b22b5efa74218f7;hp=9c4e7d8bc7e97010b23d0dc1b21f349e723f2c93;hpb=1c35448b880358d020e81339657e3435fdda9434;p=dak.git diff --git a/dak/transitions.py b/dak/transitions.py index 9c4e7d8b..808831b1 100755 --- a/dak/transitions.py +++ b/dak/transitions.py @@ -524,13 +524,16 @@ def transition_info(transitions): @type transitions: dict @param transitions: defined transitions """ + + session = DBConn().session() + for trans in transitions: t = transitions[trans] source = t["source"] expected = t["new"] # Will be empty list if nothing is in testing. - sources = get_suite_version(source, "testing") + sources = get_source_in_suite(source, "testing", session) print get_info(trans, source, expected, t["rm"], t["reason"], t["packages"])