Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1559)

Unified Diff: Tools/Scripts/webkitpy/common/system/outputcapture.py

Issue 18418010: Check in the thirdparty libs needed for webkitpy. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698