Skip to content

Commit

Permalink
fix using the wrong variable
Browse files Browse the repository at this point in the history
caused problems with pypy
  • Loading branch information
saucoide committed Sep 22, 2024
1 parent 33e840e commit d8babde
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nox/virtualenv.py
Original file line number Diff line number Diff line change
Expand Up @@ -555,9 +555,9 @@ def _resolved_interpreter(self) -> str:
return self._resolved

if HAS_UV and UV_PYTHON_SUPPORT:
uv_python_success = uv_install_python(self.interpreter)
uv_python_success = uv_install_python(cleaned_interpreter)
if uv_python_success:
self._resolved = self.interpreter
self._resolved = cleaned_interpreter
return self._resolved

# The rest of this is only applicable to Windows, so if we don't have
Expand Down

0 comments on commit d8babde

Please sign in to comment.