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 626a662 commit 16d62feCopy full SHA for 16d62fe
pip/req.py
@@ -445,8 +445,10 @@ def uninstall(self, auto_confirm=False):
445
egg_info_path = debian_egg_info_path
446
paths_to_remove.add(egg_info_path)
447
if dist.has_metadata('installed-files.txt'):
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)
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