From 6a5ed3de675806c0b7cda83f1fefe64918514b01 Mon Sep 17 00:00:00 2001
From: Sean Dague <sdague@linux.vnet.ibm.com>
Date: Mon, 21 Jan 2013 22:40:43 -0500
Subject: [PATCH] stop duplicating class name.

this code really liked to duplicate the class name. I think
we can handle having it only once in the string.

Change-Id: Ie720d5b03f1656cacb8662c99412b24cb0641165
Reviewed-on: https://review.openstack.org/20210
Reviewed-by: James E. Blair <corvus@inaugust.com>
Reviewed-by: Clark Boylan <clark.boylan@gmail.com>
Approved: Clark Boylan <clark.boylan@gmail.com>
Tested-by: Jenkins
---
 modules/jenkins/files/slave_scripts/subunit2html.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/jenkins/files/slave_scripts/subunit2html.py b/modules/jenkins/files/slave_scripts/subunit2html.py
index 4dbcceb60f..0fd9d7bb07 100755
--- a/modules/jenkins/files/slave_scripts/subunit2html.py
+++ b/modules/jenkins/files/slave_scripts/subunit2html.py
@@ -562,7 +562,7 @@ class HtmlOutput(unittest.TestResult):
             if cls.mod == "__main__":
                 name = cls.name
             else:
-                name = "%s.%s" % (cls.mod, cls.name)
+                name = "%s" % (cls.name)
             doc = cls.__doc__ and cls.__doc__.split("\n")[0] or ""
             desc = doc and '%s: %s' % (name, doc) or name