From: Ansgar Burchardt Date: Mon, 7 Jan 2013 10:24:48 +0000 (+0100) Subject: dak/process_new.py: show target suite and changed-by X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;ds=sidebyside;h=f7384786c6598646979c1e0a4a7d3643726cb58f;p=dak.git dak/process_new.py: show target suite and changed-by --- diff --git a/dak/process_new.py b/dak/process_new.py index d1e58021..e0ed4b81 100755 --- a/dak/process_new.py +++ b/dak/process_new.py @@ -471,6 +471,16 @@ def do_new(upload, upload_copy, handler, session): missing = handler.missing_overrides(hints=missing) broken = not check_valid(missing, session) + changesname = os.path.basename(upload.changes.changesname) + + print + print changesname + print "-" * len(changesname) + print + print " Target: {0}".format(upload.target_suite.suite_name) + print " Changed-By: {0}".format(upload.changes.changedby) + print + #if len(byhand) == 0 and len(missing) == 0: # break @@ -806,8 +816,6 @@ def main(): show_new_comments(uploads, session) else: for upload in uploads: - print "\n" + os.path.basename(upload.changes.changesname) - do_pkg (upload, session) end()