-
Notifications
You must be signed in to change notification settings - Fork 81
New issue
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
'FileFinder' object has no attribute 'find_module' #736
Comments
According to #720 (comment), this is the result of a deprecation in Python 3.12 and |
ahmubashshir
added a commit
to ahm-forks/trackma
that referenced
this issue
Jan 5, 2025
Fixes z411#736 Signed-off-by: Mubashshir <ahmubashshir@gmail.com>
ahmubashshir
added a commit
to ahm-forks/trackma
that referenced
this issue
Jan 5, 2025
Fixes z411#736 Signed-off-by: Mubashshir <ahmubashshir@gmail.com>
ahmubashshir
added a commit
to ahm-forks/trackma
that referenced
this issue
Jan 5, 2025
Fixes z411#736 Signed-off-by: Mubashshir <ahmubashshir@gmail.com>
ahmubashshir
added a commit
to ahm-forks/trackma
that referenced
this issue
Jan 5, 2025
Fixes z411#736 Signed-off-by: Mubashshir <ahmubashshir@gmail.com>
ahmubashshir
added a commit
to ahm-forks/trackma
that referenced
this issue
Jan 5, 2025
Fixes z411#736 Signed-off-by: Mubashshir <ahmubashshir@gmail.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The engine fails to initialize with the error
AttributeError: 'FileFinder' object has no attribute 'find_module'
. It happens because it was deprecated, see https://docs.python.org/3/library/pkgutil.html#pkgutil.find_loader.It can be solved easily changing this:
trackma/trackma/engine.py
Line 315 in e56718b
For this:
I think maybe there's a better way to do it(?) but I don't have much time to check it.
The text was updated successfully, but these errors were encountered: