X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=dak%2Fshow_new.py;h=3b052c18307be406181eef8d2c5e308101998339;hb=2d1714245f6df36ec2c7f2d7154b23e331f150a5;hp=7396d3ccd99af1b357b6fdb1ae19d64163c61a0d;hpb=3b8862ae0e21fae9fc552d4df160f45684976d7d;p=dak.git diff --git a/dak/show_new.py b/dak/show_new.py index 7396d3cc..3b052c18 100755 --- a/dak/show_new.py +++ b/dak/show_new.py @@ -169,7 +169,7 @@ def do_pkg(changes_file): if os.path.exists(htmlfile) and \ os.stat(htmlfile).st_mtime > os.stat(origchanges).st_mtime: session.close() - return + return (PROC_STATUS_SUCCESS, '%s already up-to-date' % htmlfile) for deb_filename, f in files.items(): if deb_filename.endswith(".udeb") or deb_filename.endswith(".deb"): @@ -205,6 +205,8 @@ def do_pkg(changes_file): outfile.close() session.close() + return (PROC_STATUS_SUCCESS, '%s already updated' % htmlfile) + ################################################################################ def usage (exit_code=0):