From 2f2e18b9c031690a073c32f77ea8b1e748cce790 Mon Sep 17 00:00:00 2001 From: Xin Pan Date: Tue, 30 Oct 2018 10:34:15 +0800 Subject: [PATCH] Merge pull request #14123 from shippingwang/fix_import_plot_py3 Fix import plot in py3 test=release/1.1 --- python/paddle/utils/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/paddle/utils/__init__.py b/python/paddle/utils/__init__.py index 5de6f966a03..db6fe2d5fff 100644 --- a/python/paddle/utils/__init__.py +++ b/python/paddle/utils/__init__.py @@ -12,5 +12,5 @@ # See the License for the specific language governing permissions and # limitations under the License. -from plot import Ploter +from .plot import Ploter __all__ = ['dump_config', 'Ploter'] -- GitLab