Skip to content

Commit

Permalink
Merge pull request #120 from appropriatetech/master
Browse files Browse the repository at this point in the history
Python3 compatibility
  • Loading branch information
paltman committed Feb 20, 2016
2 parents 27cb1cf + 47c2843 commit 3b635d9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion symposion/sponsorship/views.py
@@ -1,5 +1,9 @@
from __future__ import unicode_literals
from cStringIO import StringIO
try:
from io import StringIO
except:
# Python 2
from cStringIO import StringIO
import itertools
import logging
import os
Expand Down

0 comments on commit 3b635d9

Please sign in to comment.