Skip to content

Commit

Permalink
fix relative import for py3
Browse files Browse the repository at this point in the history
  • Loading branch information
pbauer committed Mar 21, 2018
1 parent e8ebe76 commit a325b8e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Products/CMFUid/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ def initialize(context):

from Products.CMFCore import utils

import UniqueIdAnnotationTool
import UniqueIdGeneratorTool
import UniqueIdHandlerTool
from . import UniqueIdAnnotationTool
from . import UniqueIdGeneratorTool
from . import UniqueIdHandlerTool

tools = (
UniqueIdAnnotationTool.UniqueIdAnnotationTool,
Expand Down

0 comments on commit a325b8e

Please sign in to comment.