From 0ed44851b80717343dfc12cad8bfd1f1363b946d Mon Sep 17 00:00:00 2001 From: Joerg Jaspert Date: Tue, 2 Sep 2008 00:17:25 +0200 Subject: [PATCH] dak/process_new.py (_accept) Fix Philipps new helper function to not break by moving Upload.build_summaries there. --- ChangeLog | 5 +++++ dak/process_new.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 36294a1b..0368c0d4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-09-02 Joerg Jaspert + + * dak/process_new.py (_accept): Fix Philipps new helper function + to not break by moving Upload.build_summaries there. + 2008-08-31 Philipp Kern * dak/process_new.py (_accept): new helper function to accept diff --git a/dak/process_new.py b/dak/process_new.py index f79c87ee..6ac1d44d 100755 --- a/dak/process_new.py +++ b/dak/process_new.py @@ -844,11 +844,11 @@ def move_to_holding(suite, queue_dir): def _accept(): if Options["No-Action"]: return + (summary, short_summary) = Upload.build_summaries() Upload.accept(summary, short_summary) os.unlink(Upload.pkg.changes_file[:-8]+".dak") def do_accept_stableupdate(suite, q): - (summary, short_summary) = Upload.build_summaries() queue_dir = Cnf["Dir::Queue::%s" % (q,)] if not Upload.pkg.changes["architecture"].has_key("source"): # It is not a sourceful upload. So its source may be either in p-u -- 2.39.2