X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=dak%2Fprocess_new.py;h=7352b91d16d7efb6332d60870eccea679903cdb6;hb=05ad283cbd145406ba3c1672f37c8f0ac1651337;hp=d1e5802161d575c32e00337fa7005cc7d794a2ae;hpb=a7f77393881783e65423f1f36778c67c52e5213d;p=dak.git diff --git a/dak/process_new.py b/dak/process_new.py index d1e58021..7352b91d 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 @@ -585,6 +595,7 @@ def usage (exit_code=0): -h, --help show this help and exit. -m, --manual-reject=MSG manual reject with `msg' -n, --no-action don't do anything + -q, --queue=QUEUE operate on a different queue -t, --trainee FTP Trainee mode -V, --version display the version number and exit @@ -806,8 +817,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()