2020-10-06, 23:13
2020-10-07, 17:42
.kodi/addons/service.xbmc.versioncheck/resources/lib/version_check/service.py", line 50
DISTRIBUTION = platform.uname().system.lower() AttributeError: 'tuple' object has no attribute 'system'
It's being caused by the new lines they added to this version of the file that weren't in the previous version (my guess is to eventually move away from the deprecated method mentioned in the lines above it). I just commented out lines 49 and 50 with the "#" character at the beginning of each and saved the file while I wait for them to fix it. The error went away.
edit the lines to look like this:
# if not DISTRIBUTION:
# DISTRIBUTION = platform.uname().system.lower()
DISTRIBUTION = platform.uname().system.lower() AttributeError: 'tuple' object has no attribute 'system'
It's being caused by the new lines they added to this version of the file that weren't in the previous version (my guess is to eventually move away from the deprecated method mentioned in the lines above it). I just commented out lines 49 and 50 with the "#" character at the beginning of each and saved the file while I wait for them to fix it. The error went away.
edit the lines to look like this:
# if not DISTRIBUTION:
# DISTRIBUTION = platform.uname().system.lower()
2020-10-07, 17:50
It's already been reported and is being worked on:
https://github.com/xbmc/repo-scripts/pul...-704612430
https://github.com/xbmc/repo-scripts/pull/1707
https://github.com/xbmc/repo-scripts/pul...-704612430
https://github.com/xbmc/repo-scripts/pull/1707
2020-10-07, 19:06
Suddenly today I also started getting Version Check Error every time I start Kodi.
I'm running Kodi on Amazon Fire Stick 4K with Arctic Zephyr 2 skin.
Please advise.
Here is my log:
ERROR: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<--
- NOTE: IGNORING THIS CAN LEAD TO MEMORY LEAKS!
Error Type: <type 'exceptions.AttributeError'>
Error Contents: 'tuple' object has no attribute 'system'
Traceback (most recent call last):
File "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/service.xbmc.versioncheck/resources/lib/runner.py", line 14, in <module>
from version_check import service # pylint: disable=import-error
File "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/service.xbmc.versioncheck/resources/lib/version_check/service.py", line 50, in <module>
DISTRIBUTION = platform.uname().system.lower()
AttributeError: 'tuple' object has no attribute 'system'
-->End of Python script error report<--
I'm running Kodi on Amazon Fire Stick 4K with Arctic Zephyr 2 skin.
Please advise.
Here is my log:
ERROR: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<--
- NOTE: IGNORING THIS CAN LEAD TO MEMORY LEAKS!
Error Type: <type 'exceptions.AttributeError'>
Error Contents: 'tuple' object has no attribute 'system'
Traceback (most recent call last):
File "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/service.xbmc.versioncheck/resources/lib/runner.py", line 14, in <module>
from version_check import service # pylint: disable=import-error
File "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/service.xbmc.versioncheck/resources/lib/version_check/service.py", line 50, in <module>
DISTRIBUTION = platform.uname().system.lower()
AttributeError: 'tuple' object has no attribute 'system'
-->End of Python script error report<--
2020-10-15, 14:33
Starting Kodi (19.0-ALPHA1 (18.9.701) Git:19.0a1-Matri). Platform: FreeBSD x86 64-bit
addon id="service.xbmc.versioncheck" name="Version Check" version="0.5.8+matrix.1"
addon id="service.xbmc.versioncheck" name="Version Check" version="0.5.8+matrix.1"
xml:
2020-10-15 18:23:19.748 T:101015 ERROR <general>: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<--
- NOTE: IGNORING THIS CAN LEAD TO MEMORY LEAKS!
Error Type: <class 'AttributeError'>
Error Contents: module 'xbmcvfs' has no attribute 'translatePath'
Traceback (most recent call last):
File "/home/.kodi/addons/service.xbmc.versioncheck/resources/lib/runner.py", line 14, in <module>
from version_check import service # pylint: disable=import-error
File "/home/.kodi/addons/service.xbmc.versioncheck/resources/lib/version_check/service.py", line 22, in <module>
from .common import ADDON
File "/home/.kodi/addons/service.xbmc.versioncheck/resources/lib/version_check/common.py", line 27, in <module>
ADDON_PROFILE = xbmcvfs.translatePath(ADDON.getAddonInfo('profile'))
AttributeError: module 'xbmcvfs' has no attribute 'translatePath'
-->End of Python script error report<--
2020-10-17, 23:54
@vgmedia
I have already reported your error a few days ago... https://github.com/xbmc/repo-scripts/pul...-709941892
Just waiting for @anxdpanic to check.
I have already reported your error a few days ago... https://github.com/xbmc/repo-scripts/pul...-709941892
Just waiting for @anxdpanic to check.