We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It doesn't return any files on linux. When using windows everyting works as expected.
I doesn't know much about python and reading python code. Maybe I'm missing some external dependencies or code is simply broke on linux.
Tested python versions:
Edit:
It was due to filename_filter. Example:
filename_filter
filename_filter=f"**\\{dll_name}",
filename_filter=f"**/{dll_name}",
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It doesn't return any files on linux. When using windows everyting works as expected.
I doesn't know much about python and reading python code. Maybe I'm missing some external dependencies or code is simply broke on linux.
Tested python versions:
Edit:
Fix
It was due to
filename_filter
.Example:
filename_filter=f"**\\{dll_name}",
worksfilename_filter=f"**/{dll_name}",
works only on windowsThe text was updated successfully, but these errors were encountered: