Commit 2fe2e79a authored by Nathaniel Case's avatar Nathaniel Case

StringIO moved in python3.

parent 3f696fc3
......@@ -23,7 +23,10 @@ import sys
import socket
import threading
from StringIO import StringIO
if sys.version_info[0] == 3:
from io import StringIO
else:
from StringIO import StringIO
from pyrasite.ipc import PyrasiteIPC
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment