I am on 4.0.3
Got error trying to access "libreria" (or "biblioteca", guess they're the same), so I'm trying to troubleshoot this.
1) I see in channelselector.py the channel's called "wiideoteca" instead of "libreria"
(there's no wiideoteca.py in /channels, but there actually is libreria.py)
2) robalo found a bug about path in library_service.py:
Código: Seleccionar todo
pathchannels = os.path.join(config.get_runtime_path(), 'pelisalacarta' , 'channels' , serie[2].strip() + '.py')
4) By changing wiideoteca to libreria, changing pathchannels to
Código: Seleccionar todo
pathchannels = os.path.join(config.get_runtime_path() , 'channels' , serie[2].strip() + '.py')
as in /core there's no such file, I added this http://xbmc-tvalacarta.googlecode.com/s ... tYonkis.py02:37:42 T:5700 ERROR: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<--
- NOTE: IGNORING THIS CAN LEAD TO MEMORY LEAKS!
Error Type: <type 'exceptions.ImportError'>
Error Contents: cannot import name DecryptYonkis
Traceback (most recent call last):
File "C:\Users\Barracuda\AppData\Roaming\Kodi\addons\plugin.video.pelisalacarta.italiano-master\default.py", line 27, in <module>
launcher.run()
File "C:\Users\Barracuda\AppData\Roaming\Kodi\addons\plugin.video.pelisalacarta.italiano-master\platformcode\launcher.py", line 101, in run
exec "import channels."+channel_name+" as channel"
File "<string>", line 1, in <module>
File "C:\Users\Barracuda\AppData\Roaming\Kodi\addons\plugin.video.pelisalacarta.italiano-master\channels\libreria.py", line 12, in <module>
from core import DecryptYonkis as Yonkis
ImportError: cannot import name DecryptYonkis
-->End of Python script error report<--
02:37:42 T:4072 ERROR: XFILE::CDirectory::GetDirectory - Error getting plugin://plugin.video.pelisalacarta/?action=mainlist&category=Libreria&channel=libreria
02:37:42 T:4072 ERROR: CGUIMediaWindow::GetDirectory(plugin://plugin.video.pelisalacarta/?action=mainlist&category=Libreria&channel=libreria) failed
so then the error become this:
So now the problem is an sqlite3 that can't find a table named tvshow...02:55:26 T:5596 ERROR: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<--
- NOTE: IGNORING THIS CAN LEAD TO MEMORY LEAKS!
Error Type: <class 'sqlite3.OperationalError'>
Error Contents: no such table: tvshow
Traceback (most recent call last):
File "C:\Users\Barracuda\AppData\Roaming\Kodi\addons\plugin.video.pelisalacarta.italiano-master\default.py", line 27, in <module>
launcher.run()
File "C:\Users\Barracuda\AppData\Roaming\Kodi\addons\plugin.video.pelisalacarta.italiano-master\platformcode\launcher.py", line 308, in run
exec "itemlist = channel."+action+"(item)"
File "<string>", line 1, in <module>
File "C:\Users\Barracuda\AppData\Roaming\Kodi\addons\plugin.video.pelisalacarta.italiano-master\channels\libreria.py", line 42, in mainlist
group by sh.idShow""")
OperationalError: no such table: tvshow
-->End of Python script error report<--
02:55:26 T:4072 ERROR: XFILE::CDirectory::GetDirectory - Error getting plugin://plugin.video.pelisalacarta/?action=mainlist&category=Libreria&channel=libreria
02:55:26 T:4072 ERROR: CGUIMediaWindow::GetDirectory(plugin://plugin.video.pelisalacarta/?action=mainlist&category=Libreria&channel=libreria) failed
I feel like I'm running in circles
