We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36d52ed commit cd5d8b7Copy full SHA for cd5d8b7
src/pip/_internal/operations/prepare.py
@@ -101,9 +101,8 @@ def unpack_vcs_link(link, location):
101
102
def _copy_file(filename, download_location):
103
# type: (str, str) -> None
104
- if True:
105
- shutil.copy(filename, download_location)
106
- logger.info('Saved %s', display_path(download_location))
+ shutil.copy(filename, download_location)
+ logger.info('Saved %s', display_path(download_location))
107
108
109
class File(object):
0 commit comments