Skip to content

Commit 9a31010

Browse files
authored
Fixed: URLs need forward slashes (#166)
* Fixed: Windows forms path using backslash when URLs need forward slashes. * Update. * Remove unused dependency.
1 parent 2ce5e92 commit 9a31010

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

comfy_cli/standalone.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import os
21
import shutil
32
import subprocess
43
import tarfile
@@ -59,7 +58,7 @@ def download_standalone_python(
5958

6059
name = f"cpython-{version}+{tag}-{target}-{flavor}"
6160
fname = f"{name}.tar.gz"
62-
url = os.path.join(asset_url_prefix, fname)
61+
url = f"{asset_url_prefix}/{fname}"
6362

6463
return download_progress(url, fname, cwd=cwd)
6564

0 commit comments

Comments
 (0)