mirror of
https://github.com/brentvollebregt/auto-py-to-exe.git
synced 2026-04-25 11:45:49 +03:00
[GH-ISSUE #544] .py file browse does not working as expected #415
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @mcagriaksoy on GitHub (Oct 15, 2025).
Original GitHub issue: https://github.com/brentvollebregt/auto-py-to-exe/issues/544
Originally assigned to: @brentvollebregt on GitHub.
Quick Checks
Describe the bug
While using the WSL i have seen a problem, when I enter the "Script Location" for the file, the file browser cannot filters the .py files correctly on my wsl-ubuntu system. It filters other files without any problem, like .json, .icon and so on. I will share problematic one and the one without any error below:
Problematic file browser UI:

Without any problem:

As you can see even there is a .py file exist on the path, it cannot be displayed.
To Reproduce
Steps to reproduce the behavior (install dependencies, do this in the auto-py-to-exe UI):
Open app on wsl-ubuntu, try to import .py file and observe that the file browser ui cannot filter the files correctly.
Expected behavior
.py files should be visible.
@brentvollebregt commented on GitHub (Oct 16, 2025):
Nice spot, thanks for raising this. I wonder if it's the
;in"*.py;*.pyw"- the other cases do not have this,github.com/brentvollebregt/auto-py-to-exe@4792d9a2cd/auto_py_to_exe/dialogs.py (L39)@brentvollebregt commented on GitHub (Oct 16, 2025):
Looking at other usages on GitHub,
file_types = [("Python files", "*.py *.pyw"), ("All files", "*")]may fix this@mcagriaksoy commented on GitHub (Oct 16, 2025):
Yes @brentvollebregt I tested, your proposed solution fixes the problem. I`ll create PR.