From af9e1171f7f59d92ba5f118c171ab18890a85e0a Mon Sep 17 00:00:00 2001 From: Tim Paine Date: Thu, 2 Jul 2020 13:46:24 -0400 Subject: [PATCH] slight UX change, dont end with stack trace as it looks like it raised the error instead of catching it --- python/perspective/perspective/libpsp.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/perspective/perspective/libpsp.py b/python/perspective/perspective/libpsp.py index e33ae5c30c..7c40c534c4 100644 --- a/python/perspective/perspective/libpsp.py +++ b/python/perspective/perspective/libpsp.py @@ -28,6 +28,6 @@ def is_libpsp(): __is_libpsp__ = False critical("Failed to import C++ bindings for Perspective " "probably as it could not be built for your architecture " - "(check install logs for more details).\n" - "You can still use `PerspectiveWidget` in client mode using JupyterLab.", + "(check install logs for more details).\n", exc_info=True) + critical("You can still use `PerspectiveWidget` in client mode using JupyterLab.")