Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Replit user committed Dec 15, 2023
1 parent e3152e1 commit 6b19cad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/poetry/installation/wheel_installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def get_base_path(self, scheme: Scheme) -> str:
sys.version_info.minor
)
source_distribution = self.scheme_dict["headers"].split("/")[-1]
basepath = str(Path(headers_path) / source_distribution)
basepath = "%s/%s" % (headers_path, source_distribution)
if basepath is None:
basepath = self.scheme_dict[scheme]
return basepath
Expand Down

0 comments on commit 6b19cad

Please sign in to comment.