Skip to content

Commit

Permalink
b/w compat import
Browse files Browse the repository at this point in the history
Co-authored-by: Wildcard Corp. <corporate@wildcardcorp.com>
  • Loading branch information
vangheem and Wildcard Corp. committed Nov 15, 2018
1 parent 68c5214 commit 778207a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGES.rst
Expand Up @@ -4,7 +4,8 @@ Changelog
3.1.1 (unreleased)
------------------

- Nothing changed yet.
- Python 3 compatibility
[vangheem]


3.1.0 (2018-07-05)
Expand Down
5 changes: 4 additions & 1 deletion plone/app/tiles/drafting.py
Expand Up @@ -10,12 +10,15 @@
from plone.tiles.data import ANNOTATIONS_KEY_PREFIX
from plone.tiles.interfaces import ITile
from plone.tiles.interfaces import ITileDataContext
from urllib.parse import urlparse
from zope.annotation.interfaces import IAnnotations
from zope.component import adapter
from zope.interface import Interface
from zope.interface import implementer

try:
from urlparse import urlparse
except ImportError:
from urllib.parse import urlparse
try:
from plone.app.drafts.dexterity import IDisplayFormDrafting
except ImportError:
Expand Down

0 comments on commit 778207a

Please sign in to comment.