We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb4dd9b commit 3d676a1Copy full SHA for 3d676a1
1 file changed
locallibs/get.py
@@ -63,8 +63,11 @@ def download(self):
63
base_url = self.base_url.replace('macosx', 'macos')
64
else:
65
base_url = self.base_url
66
+ python_dir_version = self.python_version
67
+ if 'rc' in python_dir_version:
68
+ python_dir_version = python_dir_version[:python_dir_version.find('r')]
69
url = base_url % (
- self.python_version,
70
+ python_dir_version,
71
self.python_version,
72
self.os_version,
73
)
0 commit comments