Kodi version check error - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: Add-on Support (https://forum.kodi.tv/forumdisplay.php?fid=27) +---- Forum: Service Add-ons (https://forum.kodi.tv/forumdisplay.php?fid=152) +---- Thread: Kodi version check error (/showthread.php?tid=357540) |
Kodi version check error - Bigdrago - 2020-10-06 Kodi 18.8 on nvidia shield tv What is causing the error? Log here: Debug log RE: Kodi version check error - flhthemi - 2020-10-07 Happens on Windows install too. RE: Kodi version check error - gotslack - 2020-10-07 .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() RE: Kodi version check error - DarrenHill - 2020-10-07 It's already been reported and is being worked on: https://github.com/xbmc/repo-scripts/pull/1703#issuecomment-704612430 https://github.com/xbmc/repo-scripts/pull/1707 RE: Kodi version check error - AakashC2020 - 2020-10-07 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<-- RE: Kodi version check error - vgmedia - 2020-10-15 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"
RE: Kodi version check error - Sea Monkey - 2020-10-17 (2020-10-15, 14:33)vgmedia Wrote: *snip* Same here. RE: Kodi version check error - Karellen - 2020-10-17 @vgmedia I have already reported your error a few days ago... https://github.com/xbmc/repo-scripts/pull/1706#issuecomment-709941892 Just waiting for @anxdpanic to check. RE: Kodi version check error - vgmedia - 2020-10-18 Hi Karellen. Thank you very much for your help. I have now rebuilt Kodi-matrix, updated to version Alpha-2 (I missed its release, thanks @pkscout for the hint). This solved all the problems. All the errors that I wrote about (version check and scrapers) disappeared. Regards. |