From 5e89a1dfa6d595103b43cdd648f47b6fe58b69d4 Mon Sep 17 00:00:00 2001 From: mzwiessele Date: Wed, 30 Sep 2015 16:50:41 +0100 Subject: [PATCH] [plotting] py3 compatibility, is it right, that relative imports always have to be in the format from . import <.> --- GPy/plotting/matplot_dep/kernel_plots.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GPy/plotting/matplot_dep/kernel_plots.py b/GPy/plotting/matplot_dep/kernel_plots.py index c8977cef..a7026e4f 100644 --- a/GPy/plotting/matplot_dep/kernel_plots.py +++ b/GPy/plotting/matplot_dep/kernel_plots.py @@ -3,7 +3,7 @@ import numpy as np from matplotlib import pyplot as pb -import Tango +from . import Tango from matplotlib.textpath import TextPath from matplotlib.transforms import offset_copy from .base_plots import ax_default