Browse Source

Update __init__.py (#97)

A simple error in the direction of the linux directory
pull/98/head
Bazza 11 months ago committed by GitHub
parent
commit
067ff0a38b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      __init__.py

2
__init__.py

@ -546,7 +546,7 @@ def python_exec():
path = sys.executable path = sys.executable
return os.path.abspath(path) return os.path.abspath(path)
elif isLinux(): elif isLinux():
return os.path.join(sys.prefix, "sys.prefix/bin", "python") return os.path.join(sys.prefix, "bin", "python")
else: else:
print("sorry, still not implemented for ", os.name, " - ", platform.system) print("sorry, still not implemented for ", os.name, " - ", platform.system)

Loading…
Cancel
Save