omarish / django-cprofile-middleware

Helpful django cprofiling middleware.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

recent python3 change breaks python2 compatibility

thehesiod opened this issue · comments

due to it expecting unicode, here's the fix:

try:
from cStringIO import StringIO
except:
from io import StringIO

Great, thanks. Fixed in 73c1e84