Skip to content

Commit

Permalink
change slashes
Browse files Browse the repository at this point in the history
  • Loading branch information
henrypinkard committed Jun 23, 2024
1 parent 995dbb5 commit ddb6b25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pycromanager/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def download_and_install(destination='auto', mm_install_log_path=None, ci_build=
windows = _get_platform() == 'Windows'
platform = 'Windows' if windows else 'Mac'
installer = 'mm_installer.exe' if windows else 'mm_installer.dmg'
latest_version = _get_download_url(ci_build) + os.sep + _find_versions(ci_build)[0].split(os.sep)[-1]
latest_version = _get_download_url(ci_build) + '/' + _find_versions(ci_build)[0].split('/')[-1]
# make a progress bar that updates every 0.5 seconds
def bar(curr, total, width):
if not hasattr(bar, 'last_update'):
Expand Down

0 comments on commit ddb6b25

Please sign in to comment.