summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2015-02-19 12:32:22 +0100
committerGuido Günther <agx@sigxcpu.org>2015-03-27 15:33:16 +0100
commit6cd275704f8e4d53389378eaa7d5dcff33a72369 (patch)
tree0c52ec3b4cb9a07592adc534867232f25e719431
parent4a53ad73eb4468796317bd1e44273a80b3ec9385 (diff)
Use six.StringIO
to work towards Python3 support Gbp-Dch: Ignore
-rw-r--r--tests/testutils/capture.py2
1 files changed, 1 insertions, 1 deletions
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):