diff options
author | Martin Vilcans <martin@librador.com> | 2013-08-13 20:19:21 +0200 |
---|---|---|
committer | Martin Vilcans <martin@librador.com> | 2013-08-13 20:34:00 +0200 |
commit | 28c4ec60e5aa70bf70ec7b66dc82d804481b8434 (patch) | |
tree | 7c6414edd5afaab5ebf2de420d3f8a1572fb6c6b /tests/fdx_test.py | |
parent | ef46feaa1e3d9b6c005aa0c90b1165b17dd71164 (diff) | |
download | screenplain-28c4ec60e5aa70bf70ec7b66dc82d804481b8434.tar.gz |
Use six.StringIO for Python 3 compat
Diffstat (limited to 'tests/fdx_test.py')
-rw-r--r-- | tests/fdx_test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/fdx_test.py b/tests/fdx_test.py index b6e2bc9..497f908 100644 --- a/tests/fdx_test.py +++ b/tests/fdx_test.py @@ -3,7 +3,7 @@ # http://www.opensource.org/licenses/mit-license.php from testcompat import TestCase -from StringIO import StringIO +from six import StringIO from screenplain.export.fdx import write_text from screenplain.richstring import plain, bold, italic |