[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[dak/master] use correct function name



Signed-off-by: Mark Hymers <mhy@debian.org>
---
 dak/transitions.py |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/dak/transitions.py b/dak/transitions.py
index 9c4e7d8..808831b 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"])
 
-- 
1.5.6.5


Reply to: