1. Are you sure you don't have an indentation problem in your addon.py? This is what I see: - item = gui.ListItem(name, iconImage=thumbpath, thumbnailImage=thumbpath) + if (thumbpath != None): + item = gui.ListItem(name, iconImage=thumbpath, thumbnailImage=thumbpath) + else: + item = gui.ListItem(name)
This is because you have a mix of tab and space. I'd really recommend replacing all tabs with spaces. 2. If possible, please fill in the optional information: http://wiki.xbmc.org/index.php?title=Addon.xml#Optional_information On Thu, Jun 6, 2013 at 1:00 AM, jingai <[email protected]> wrote: > *addon - plugin.image.iphoto > *version - 2.0.5 > *url - git://github.com/jingai/plugin.image.iphoto.git > *revision - 6b00e6f0858348a3e86674d656c479d8ff3af8f7 > *branch - eden > *xbmc version - eden > > commit 6b00e6f0858348a3e86674d656c479d8ff3af8f7 > Author: jingai <[email protected]> > Date: Wed Jun 5 18:51:55 2013 -0400 > > Version 2.0.5. > > commit 00f51f4533c83286681426e64bce3173995aad9b > Author: jingai <[email protected]> > Date: Wed Jun 5 18:49:41 2013 -0400 > > Ignore non-existent thumbnails in Events. > > ------------------------------------------------------------------------------ > How ServiceNow helps IT people transform IT departments: > 1. A cloud service to automate IT design, transition and operations > 2. Dashboards that offer high-level views of enterprise services > 3. A single system of record for all IT processes > http://p.sf.net/sfu/servicenow-d2d-j > _______________________________________________ > Xbmc-addons mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/xbmc-addons ------------------------------------------------------------------------------ How ServiceNow helps IT people transform IT departments: 1. A cloud service to automate IT design, transition and operations 2. Dashboards that offer high-level views of enterprise services 3. A single system of record for all IT processes http://p.sf.net/sfu/servicenow-d2d-j _______________________________________________ Xbmc-addons mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/xbmc-addons
