Skip to content

Commit

Permalink
Fix si usage
Browse files Browse the repository at this point in the history
  • Loading branch information
ale-rt committed Oct 24, 2017
1 parent cc869a9 commit fc4c76f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion plone/namedfile/tests/test_scaling.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from plone.namedfile.testing import PLONE_NAMEDFILE_INTEGRATION_TESTING
from plone.namedfile.tests import getFile
from plone.scale.interfaces import IScaledImageQuality
from six.StringIO import StringIO
from six import StringIO
from zExceptions import Unauthorized
from zope.annotation import IAttributeAnnotatable
from zope.component import getGlobalSiteManager
Expand Down
2 changes: 1 addition & 1 deletion plone/namedfile/tests/test_scaling_functional.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from plone.namedfile.testing import PLONE_NAMEDFILE_FUNCTIONAL_TESTING
from plone.namedfile.tests import getFile
from plone.testing.z2 import Browser
from six.StringIO import StringIO
from six import StringIO
from zope.annotation import IAttributeAnnotatable
from zope.interface import implementer

Expand Down
2 changes: 1 addition & 1 deletion plone/namedfile/utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from plone.namedfile.utils.png_utils import process_png
from plone.namedfile.utils.tiff_utils import process_tiff
from plone.registry.interfaces import IRegistry
from six.StringIO import StringIO
from six import StringIO
from zope.component import queryUtility
from zope.deprecation import deprecate

Expand Down
2 changes: 1 addition & 1 deletion plone/namedfile/utils/jpeg_utils.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-

from logging import getLogger
from six.StringIO import StringIO
from six import StringIO

import struct

Expand Down
2 changes: 1 addition & 1 deletion plone/namedfile/utils/tiff_utils.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
from logging import getLogger
from six.StringIO import StringIO
from six import StringIO

import struct

Expand Down

0 comments on commit fc4c76f

Please sign in to comment.