Merge pull request #10688 from ianzd/devel

Import StringIO from six in a couple more places.
This commit is contained in:
Toshio Kuratomi 2015-04-13 13:05:36 -07:00
commit b0479c425b
2 changed files with 2 additions and 2 deletions

View file

@ -21,7 +21,7 @@ from __future__ import (absolute_import, division, print_function)
__metaclass__ = type
# from python and deps
from cStringIO import StringIO
from six.moves import StringIO
import json
import os
import shlex

View file

@ -20,7 +20,7 @@
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type
from StringIO import StringIO
from six.moves import StringIO
from collections import Sequence, Set, Mapping
from ansible.compat.tests import unittest