summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2021-03-17 10:35:33 -0400
committerPeter LaFosse <peter@vector35.com>2021-03-19 11:15:11 -0400
commit17fff9c72f0f84c69ce31c8522eb67f9b68a128f (patch)
tree2a03b31aea751d67ebaf55f22cef0f4473e9204b /python
parent87b73e8ffd143418b334df084c7d931ed43eb9a6 (diff)
Minor formatting changes
Diffstat (limited to 'python')
-rw-r--r--python/scriptingprovider.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/scriptingprovider.py b/python/scriptingprovider.py
index a31971fc..7a970338 100644
--- a/python/scriptingprovider.py
+++ b/python/scriptingprovider.py
@@ -860,12 +860,12 @@ class PythonScriptingProvider(ScriptingProvider):
return (python_bin, "Success")
using_bundled_python = not python_lib
-
+
if sys.platform == "darwin":
if using_bundled_python:
return (None, "Failed: Bundled python doesn't support dependency installation. Specify a full python installation in your 'Python Interpreter' and try again")
- python_bin = Path(python_lib).parent / f"bin/python{python_lib_version}"
+ python_bin = Path(python_lib).parent / f"bin/python{python_lib_version}"
elif sys.platform == "linux":
class Dl_info(ctypes.Structure):
_fields_ = [