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 16d62fe commit c8fa412Copy full SHA for c8fa412
pip/req.py
@@ -448,7 +448,7 @@ def uninstall(self, auto_confirm=False):
448
logger.notify("used installed files")
449
for installed_file in dist.get_metadata('installed-files.txt').splitlines():
450
path = os.path.normpath(os.path.join(egg_info_path, installed_file))
451
- logger.notify(path)
+ logger.notify(str(os.path.exists(path)) + ' ' + path)
452
paths_to_remove.add(path)
453
elif dist.has_metadata('top_level.txt'):
454
if dist.has_metadata('namespace_packages.txt'):
0 commit comments