X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=dak%2Fqueue_report.py;h=422672b7e99be6c9fa466a1fd7b22336ba4132b9;hb=f01b13ab05dcfc8ccebb8eaba3362f70b3018809;hp=5e164285d8372599d8537bc922f644a77a99393c;hpb=c8182c171aa569945e899566fdf6492cfb166d71;p=dak.git diff --git a/dak/queue_report.py b/dak/queue_report.py index 5e164285..422672b7 100755 --- a/dak/queue_report.py +++ b/dak/queue_report.py @@ -242,14 +242,6 @@ def footer(): one version.
You may want to look at the REJECT-FAQ for possible reasons why one of the above packages may get rejected.

-

- Valid XHTML 1.0 Strict - - Valid CSS! - -

""" @@ -662,7 +654,10 @@ def main(): f = None if Cnf.has_key("Queue-Report::Options::822"): # Open the report file - f = open(Cnf["Queue-Report::ReportLocations::822Location"], "w") + f = sys.stdout + filename822 = Cnf.get("Queue-Report::ReportLocations::822Location") + if filename822: + f = open(filename822, "w") session = DBConn().session()