From f0d51716f885bf350103cfdcc73267b95ede6e29 Mon Sep 17 00:00:00 2001 From: Isaiah Norton Date: Sat, 7 Jul 2018 14:10:18 -0400 Subject: [PATCH] ENH: remove import warning for non-embedded interpreter --- Base/Python/slicer/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/Base/Python/slicer/__init__.py b/Base/Python/slicer/__init__.py index 2245e68ca..11db0e6c4 100644 --- a/Base/Python/slicer/__init__.py +++ b/Base/Python/slicer/__init__.py @@ -42,7 +42,6 @@ standalone_python = "python" in string.lower(os.path.split(sys.executable)[-1]) for kit in available_kits: # skip PythonQt kits if we are running in a regular python interpreter if standalone_python and "PythonQt" in kit: - print("Detected non-embedded Python interpreter. Skipping module '{}'".format(kit)) continue try: -- GitLab