Skip to content

Commit c8fa412

Browse files
committed
log which installed files exist
1 parent 16d62fe commit c8fa412

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pip/req.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,7 @@ def uninstall(self, auto_confirm=False):
448448
logger.notify("used installed files")
449449
for installed_file in dist.get_metadata('installed-files.txt').splitlines():
450450
path = os.path.normpath(os.path.join(egg_info_path, installed_file))
451-
logger.notify(path)
451+
logger.notify(str(os.path.exists(path)) + ' ' + path)
452452
paths_to_remove.add(path)
453453
elif dist.has_metadata('top_level.txt'):
454454
if dist.has_metadata('namespace_packages.txt'):

0 commit comments

Comments
 (0)