Commit a5df282c authored by Luke Macken's avatar Luke Macken

Use the new io.StringIO in python3

parent ee9e197f
......@@ -18,7 +18,10 @@
import os
import sys
from StringIO import StringIO
try:
from StringIO import StringIO
except ImportError:
from io import StringIO
from pyrasite.main import main
......
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