Skip to content

Commit

Permalink
Update conda_libmamba_solver/solver.py
Browse files Browse the repository at this point in the history
Co-authored-by: Jannis Leidel <jannis@leidel.info>
  • Loading branch information
jaimergp and jezdez authored Sep 28, 2023
1 parent bd4c42b commit d4ee9d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conda_libmamba_solver/solver.py
Original file line number Diff line number Diff line change
Expand Up @@ -1009,7 +1009,7 @@ def _notify_conda_outdated(
# once prefix data is lazy this might be a different situation
current_conda_prefix_rec = None
conda_meta_prefix_directory = os.path.join(context.conda_prefix, "conda-meta")
with suppress(OSError):
with suppress(OSError, ValueError):
if os.path.lexists(conda_meta_prefix_directory):
for entry in os.scandir(conda_meta_prefix_directory):
if (
Expand Down

0 comments on commit d4ee9d6

Please sign in to comment.