We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ce5e92 commit 9a31010Copy full SHA for 9a31010
1 file changed
comfy_cli/standalone.py
@@ -1,4 +1,3 @@
1
-import os
2
import shutil
3
import subprocess
4
import tarfile
@@ -59,7 +58,7 @@ def download_standalone_python(
59
58
60
name = f"cpython-{version}+{tag}-{target}-{flavor}"
61
fname = f"{name}.tar.gz"
62
- url = os.path.join(asset_url_prefix, fname)
+ url = f"{asset_url_prefix}/{fname}"
63
64
return download_progress(url, fname, cwd=cwd)
65
0 commit comments