Skip to content

Commit

Permalink
Add error message when wheel-dir not writeable; pypa#5740
Browse files Browse the repository at this point in the history
  • Loading branch information
timb07 committed Aug 27, 2018
1 parent 404838a commit 8c86277
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pip/_internal/wheel.py
Original file line number Diff line number Diff line change
Expand Up @@ -654,7 +654,7 @@ def _build_one_inside_env(self, req, output_dir, python_tag=None):
logger.info('Stored in directory: %s', output_dir)
return wheel_path
except Exception:
pass
logger.exception('Error storing in directory: %s', output_dir)
# Ignore return, we can't do anything else useful.
self._clean_one(req)
return None
Expand Down

0 comments on commit 8c86277

Please sign in to comment.