commit | bd90a156ee84ee13369e9015cdd299cb20be52d1 | [log] [tgz] |
---|---|---|
author | Katherine Elliott <katherine.elliott@hp.com> | Thu May 24 14:05:02 2012 -0600 |
committer | Katherine Elliott <katherine.elliott@hp.com> | Thu May 24 14:05:33 2012 -0600 |
tree | b4a42e5be917470be8337f9258496feac710212d | |
parent | 38b34e60659030802b06032c990850846be5a846 [diff] |
Fixes Bug 1004138 - Fix for Bug 992275 Breaks on Python < 2.7. This is the offending code: import unittest2 as unittest from unittest.case import SkipTest The fix is: remove the import line change the "from" line to: from unittest2.case import SkipTest Change-Id: I321eb401da8dec6c2732f3913af611bf78f684f5