Skip to content

Commit 72c05bc

Browse files
committed
Fix client download on windows
1 parent 6345546 commit 72c05bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdk/python/flet/flet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ def _open_flet_view(page_url):
357357
temp_flet_dir.mkdir(parents=True, exist_ok=True)
358358
with zipfile.ZipFile(zip_file, "r") as zip_arch:
359359
zip_arch.extractall(str(temp_flet_dir))
360-
app_path = temp_flet_dir.joinpath("flet", flet_exe)
360+
flet_path = str(temp_flet_dir.joinpath("flet", flet_exe))
361361
args = [flet_path, page_url]
362362
elif is_macos():
363363
# build version-specific path to Flet.app

0 commit comments

Comments
 (0)