diff --git a/brother_ql/raster.py b/brother_ql/raster.py index e631027..7e90df1 100644 --- a/brother_ql/raster.py +++ b/brother_ql/raster.py @@ -20,7 +20,10 @@ from .devicedependent import models, \ from . import BrotherQLError, BrotherQLUnsupportedCmd, BrotherQLUnknownModel, BrotherQLRasterError -from io import BytesIO +try: + from io import BytesIO +except: # Py2 + from cStringIO import StringIO as BytesIO logger = logging.getLogger(__name__)