Skip to content
Snippets Groups Projects
Commit 46e8196f authored by Lu lei's avatar Lu lei
Browse files

Use six.StringIO

In links: http://pythonhosted.org/six/, we know 'cStringIO' is
a module of python 2.x, but in python3.x module 'io' has the
same function as 'cStringIO' in python2.x. So here we use
six.stringIO instead.

TrivialFix.

Change-Id: I8022b92b186e239cd76a36dab7766301bf96d2c4
parent 4b785209
No related branches found
No related tags found
No related merge requests found
......@@ -15,9 +15,9 @@
# limitations under the License.
from ConfigParser import ConfigParser
from cStringIO import StringIO
import inspect
import os
from six import StringIO
from ansible.plugins.action import ActionBase
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment