From 300bdb960bd9099e94580cbc2a739011b703d626 Mon Sep 17 00:00:00 2001 From: Mike Croucher Date: Fri, 27 Feb 2015 19:04:25 +0000 Subject: [PATCH] Print fixes for Python 3 --- GPy/plotting/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GPy/plotting/__init__.py b/GPy/plotting/__init__.py index 652bc628..9dd84441 100644 --- a/GPy/plotting/__init__.py +++ b/GPy/plotting/__init__.py @@ -4,4 +4,4 @@ try: from . import matplot_dep except (ImportError, NameError): - print 'Fail to load GPy.plotting.matplot_dep.' \ No newline at end of file + print('Fail to load GPy.plotting.matplot_dep.') \ No newline at end of file