Skip to content

Commit a291c6c

Browse files
committed
relative import fix for py 3.3
1 parent 9f3c576 commit a291c6c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

plotly/utils.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
Low-level functionality NOT intended for users to EVER use.
66
77
"""
8+
from __future__ import absolute_import
9+
810
import json
911
import os.path
1012
import re
@@ -13,7 +15,8 @@
1315

1416
import pytz
1517

16-
from exceptions import PlotlyError
18+
19+
from . exceptions import PlotlyError
1720

1821
try:
1922
import numpy

0 commit comments

Comments
 (0)