Fix import of StringIO to work with Python3+

Change-Id: Iddb7836a88100eddb415e0860d564c1b01b254e5
This commit is contained in:
Jason Meridth 2016-05-27 12:09:28 -05:00
parent dfa46371c4
commit 8ffd9baf67
2 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ try:
except:
from multiprocessing import Process, Queue
from StringIO import StringIO
from six import StringIO
from unittest.runner import _WritelnDecorator
import importlib
import logging

View File

@ -11,8 +11,8 @@
# License for the specific language governing permissions and limitations
# under the License.
from six import StringIO
from socks import socket, create_connection
from StringIO import StringIO
from uuid import uuid4
import io
import time