From 6cd275704f8e4d53389378eaa7d5dcff33a72369 Mon Sep 17 00:00:00 2001 From: Guido Günther Date: Thu, 19 Feb 2015 12:32:22 +0100 Subject: Use six.StringIO to work towards Python3 support Gbp-Dch: Ignore --- tests/testutils/capture.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/testutils/capture.py b/tests/testutils/capture.py index 60d5a12..b17e807 100644 --- a/tests/testutils/capture.py +++ b/tests/testutils/capture.py @@ -2,7 +2,7 @@ import sys from contextlib import contextmanager -from StringIO import StringIO +from six import StringIO class StderrCapture(StringIO): -- cgit v1.2.3