From: Torsten Werner Date: Tue, 6 Jul 2010 20:00:45 +0000 (+0000) Subject: show-new: no longer fiddle with sys.stdout X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;h=6b790434ac5d30b64681fa45fb020942561fce1a;hp=7efeb186029866804f6737f49839998d4fa21cd6;p=dak.git show-new: no longer fiddle with sys.stdout Signed-off-by: Torsten Werner --- diff --git a/dak/show_new.py b/dak/show_new.py index cdd1473a..183c1bb5 100755 --- a/dak/show_new.py +++ b/dak/show_new.py @@ -173,34 +173,29 @@ def do_pkg(changes_file): new = determine_new(u.pkg.changes, files, 0) - stdout_fd = sys.stdout - htmlname = changes["source"] + "_" + changes["version"] + ".html" sources.add(htmlname) # do not generate html output if that source/version already has one. if not os.path.exists(os.path.join(cnf["Show-New::HTMLPath"],htmlname)): - sys.stdout = open(os.path.join(cnf["Show-New::HTMLPath"],htmlname),"w") + outfile = open(os.path.join(cnf["Show-New::HTMLPath"],htmlname),"w") filestoexamine = [] for pkg in new.keys(): for fn in new[pkg]["files"]: filestoexamine.append(fn) - print html_header(changes["source"], filestoexamine) + print >> outfile, html_header(changes["source"], filestoexamine) check_valid(new) distribution = changes["distribution"].keys()[0] - print examine_package.display_changes(distribution, changes_file) + print >> outfile, examine_package.display_changes(distribution, changes_file) for fn in filter(lambda fn: fn.endswith(".dsc"), filestoexamine): - print examine_package.check_dsc(distribution, fn) + print >> outfile, examine_package.check_dsc(distribution, fn) for fn in filter(lambda fn: fn.endswith(".deb") or fn.endswith(".udeb"), filestoexamine): - print examine_package.check_deb(distribution, fn) + print >> outfile, examine_package.check_deb(distribution, fn) - print html_footer() - if sys.stdout != stdout_fd: - sys.stdout.close() - sys.stdout = stdout_fd + print >> outfile, html_footer() session.close() ################################################################################