Skip to content

Commit

Permalink
my bad
Browse files Browse the repository at this point in the history
  • Loading branch information
gawel committed Mar 12, 2015
1 parent 7251205 commit a90fcc8
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tests.py
Expand Up @@ -8,7 +8,12 @@
from unittest import TestCase
from unittest import skipIf
from gp.recipe.node import Recipe
from io import StringIO
try:
# python 2
from StringIO import StringIO
except:
# python 3
from io import StringIO

PY3 = bool(sys.version_info[0] == 3)

Expand Down

0 comments on commit a90fcc8

Please sign in to comment.