From a34415582747228688fc4cb1925ccfc181b41957 Mon Sep 17 00:00:00 2001 From: James Hensman Date: Thu, 13 Aug 2015 08:41:54 +0100 Subject: [PATCH] fixed relative import in spline --- GPy/kern/_src/spline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GPy/kern/_src/spline.py b/GPy/kern/_src/spline.py index bcef8548..233cf7e8 100644 --- a/GPy/kern/_src/spline.py +++ b/GPy/kern/_src/spline.py @@ -2,7 +2,7 @@ # Licensed under the BSD 3-clause license (see LICENSE.txt) import numpy as np -from kern import Kern +from .kern import Kern from ...core.parameterization import Param from ...core.parameterization.transformations import Logexp class Spline(Kern):