| Index: Tools/Scripts/webkitpy/common/system/outputcapture.py
|
| diff --git a/Tools/Scripts/webkitpy/common/system/outputcapture.py b/Tools/Scripts/webkitpy/common/system/outputcapture.py
|
| index 893b5e52849dbf7254ac2f0c96adc45d043b6554..bf3ae9186a6410ffe744dd11c1133479d938af68 100644
|
| --- a/Tools/Scripts/webkitpy/common/system/outputcapture.py
|
| +++ b/Tools/Scripts/webkitpy/common/system/outputcapture.py
|
| @@ -29,10 +29,11 @@
|
| # Class for unittest support. Used for capturing stderr/stdout.
|
|
|
| import logging
|
| -import unittest # Don't use unittest2 here as the autoinstaller may not have it yet.
|
| import sys
|
| +
|
| from StringIO import StringIO
|
|
|
| +from webkitpy.thirdparty import unittest2 as unittest
|
|
|
| class OutputCapture(object):
|
| # By default we capture the output to a stream. Other modules may override
|
|
|