Fix typo in htmloutput sorting.

Fix a typo and bump the version number to prep for releasing this fix.

Change-Id: Iabcb552d6b0aad8b665a4b825dd9e5434a5962f0
This commit is contained in:
Clark Boylan 2012-08-22 16:47:42 -07:00
parent c7bd84dd31
commit fe717883af
2 changed files with 2 additions and 2 deletions

View File

@ -600,7 +600,7 @@ class HtmlOutput(Plugin):
if hasattr(test, 'test'):
cls = test.test.__class__
else:
cls = t.__class__
cls = test.__class__
if not rmap.has_key(cls):
rmap[cls] = []
classes.append(cls)

View File

@ -1 +1 @@
__version__ = '0.0.2'
__version__ = '0.0.3'