Skip to content

Commit

Permalink
fixes pypa#9452
Browse files Browse the repository at this point in the history
  • Loading branch information
Niko Pasanen committed Jan 13, 2021
1 parent aa08988 commit a757ec7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pip/_internal/req/req_uninstall.py
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,7 @@ def from_dist(cls, dist):
elif develop_egg_link:
# develop egg
with open(develop_egg_link, 'r') as fh:
link_pointer = os.path.normcase(fh.readline().strip())
link_pointer = normalize_path(os.path.normcase(fh.readline().strip()))
assert (link_pointer == dist.location), (
'Egg-link {} does not match installed location of {} '
'(at {})'.format(
Expand Down

0 comments on commit a757ec7

Please sign in to comment.