From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1Qro98-0007cn-Bg for garchives@archives.gentoo.org; Fri, 12 Aug 2011 09:35:18 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7E85521C05E; Fri, 12 Aug 2011 09:35:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 50DDD21C05E for ; Fri, 12 Aug 2011 09:35:09 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B3B4E1B4066 for ; Fri, 12 Aug 2011 09:35:08 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 0E2F380040 for ; Fri, 12 Aug 2011 09:35:08 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <3a4f945b68d90eb9d9bc7b05273361928b29837b.mgorny@gentoo> Subject: [gentoo-commits] proj/pms-test-suite:master commit in: pmstestsuite/output/ X-VCS-Repository: proj/pms-test-suite X-VCS-Files: pmstestsuite/output/html.py X-VCS-Directories: pmstestsuite/output/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 3a4f945b68d90eb9d9bc7b05273361928b29837b Date: Fri, 12 Aug 2011 09:35:08 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 6c3f349feef1a2fe4f78ed183a304417 commit: 3a4f945b68d90eb9d9bc7b05273361928b29837b Author: Micha=C5=82 G=C3=B3rny gentoo org> AuthorDate: Fri Aug 12 09:33:07 2011 +0000 Commit: Micha=C5=82 G=C3=B3rny gentoo org> CommitDate: Fri Aug 12 09:33:24 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/pms-test-suit= e.git;a=3Dcommit;h=3D3a4f945b HTML output: include PM version as well. --- pmstestsuite/output/html.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/pmstestsuite/output/html.py b/pmstestsuite/output/html.py index f423d8f..d5e0676 100644 --- a/pmstestsuite/output/html.py +++ b/pmstestsuite/output/html.py @@ -168,7 +168,7 @@ class HTMLOutput(OutputModule): table[0][2] =3D TH('Assertion', colspan =3D 2) table[0][4] =3D TH('Expected') for i, pm in enumerate(mypms): - table[0][5 + i*2] =3D TH(pm.name, colspan =3D 2) + table[0][5 + i*2] =3D TH('%s %s' % (pm.name, pm.version), colspan =3D= 2) table[0][6 + i*2] =3D NoCell() table[1][5 + i*2] =3D TH('Actual') table[1][6 + i*2] =3D TH('Result')