Skip to content

Commit

Permalink
Revert "Space in username (#1390)" (#1415)
Browse files Browse the repository at this point in the history
This reverts commit 07da232.

Undo the attempt to work around problems with spaces in username. It causes issues on (at least) the OSX installable. And it's not known whether it actually fixes the original problem
  • Loading branch information
tjguk authored Mar 28, 2021
1 parent f673811 commit ad16f42
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions mu/virtual_environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -521,11 +521,10 @@ def ensure_interpreter_version(self):
#
process = subprocess.run(
[
os.path.basename(self.interpreter),
self.interpreter,
"-c",
'import sys; print("%s%s" % sys.version_info[:2])',
],
cwd=os.path.abspath(os.path.dirname(self.interpreter)),
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
check=True,
Expand Down

0 comments on commit ad16f42

Please sign in to comment.