From a12298d60e2f714b4ae6212f3dfe96833c9d3dd0 Mon Sep 17 00:00:00 2001 From: Neil Lawrence Date: Fri, 21 May 2021 08:03:50 +0100 Subject: [PATCH] Update error message a little. --- GPy/plotting/matplot_dep/visualize.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/GPy/plotting/matplot_dep/visualize.py b/GPy/plotting/matplot_dep/visualize.py index 16f9fc5f..2a1b636d 100644 --- a/GPy/plotting/matplot_dep/visualize.py +++ b/GPy/plotting/matplot_dep/visualize.py @@ -503,7 +503,9 @@ class stick_show(mocap_data_show): try: self.vals = self.vals.reshape((3, self.vals.shape[1]//3)).T except ValueError as e: - print('Passed values to data_show need to have a dimension which is divisible by 3 for display as they should be a point cloud of 3-D points.') + print('Passed values to stick_show need to have a + dimension which is divisible by 3 for display as they + should be a point cloud of 3-D points.') raise(e)