Skip to content

Commit

Permalink
Fix StringIO import in results_backends module
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Yolken committed Feb 4, 2017
1 parent b927ff6 commit 68592ae
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion superset/results_backends.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@
import pickle

import logging
import StringIO

try:
import StringIO
except ImportError:
import io as StringIO

import boto3
from werkzeug.contrib.cache import BaseCache
Expand Down

0 comments on commit 68592ae

Please sign in to comment.