From fe717883af362a32323fbd27c69bfc2c1847cffd Mon Sep 17 00:00:00 2001 From: Clark Boylan Date: Wed, 22 Aug 2012 16:47:42 -0700 Subject: [PATCH] Fix typo in htmloutput sorting. Fix a typo and bump the version number to prep for releasing this fix. Change-Id: Iabcb552d6b0aad8b665a4b825dd9e5434a5962f0 --- htmloutput/htmloutput.py | 2 +- htmloutput/version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/htmloutput/htmloutput.py b/htmloutput/htmloutput.py index 70bb2f5..8cffffc 100644 --- a/htmloutput/htmloutput.py +++ b/htmloutput/htmloutput.py @@ -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) diff --git a/htmloutput/version.py b/htmloutput/version.py index d18f409..ffcc925 100644 --- a/htmloutput/version.py +++ b/htmloutput/version.py @@ -1 +1 @@ -__version__ = '0.0.2' +__version__ = '0.0.3'