From: Joerg Jaspert Date: Sun, 6 Jan 2008 11:24:07 +0000 (+0100) Subject: Lintian now loves html output too X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;ds=inline;h=76cc6b0f163f76c4bdcaceebf55a68348924c598;hp=-c;p=dak.git Lintian now loves html output too --- 76cc6b0f163f76c4bdcaceebf55a68348924c598 diff --git a/ChangeLog b/ChangeLog index b3fef2c5..1f818980 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-01-06 Joerg Jaspert + + * dak/examine_package.py (do_lintian): lintian now supports html + coloring, so use it. + 2007-12-31 Anthony Towns * dak/process_new.py (recheck): pass "" for prefix_str to reject() diff --git a/dak/examine_package.py b/dak/examine_package.py index 598e4577..72e098d5 100755 --- a/dak/examine_package.py +++ b/dak/examine_package.py @@ -339,9 +339,8 @@ def do_command (command, filename): print_formatted_text(o.read()) def do_lintian (filename): - # lintian currently does not have html coloring, so dont use color for lintian (yet) if use_html: - do_command("lintian --show-overrides", filename) + do_command("lintian --show-overrides --color html", filename) else: do_command("lintian --show-overrides --color always", filename)