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 Thanks On Thu, Jun 6, 2013 at 1:00 AM, jingai <[email protected]> wrote: > *addon - plugin.image.iphoto > *version - 2.1.6 > *url - git://github.com/jingai/plugin.image.iphoto.git > *revision - 88996a5412cb794ebf0a0f00900d9f2d0a676b5b > *branch - master > *xbmc version - frodo > > commit 88996a5412cb794ebf0a0f00900d9f2d0a676b5b > Author: jingai <[email protected]> > Date: Wed Jun 5 18:54:06 2013 -0400 > > Version 2.1.6. > > commit 09c6b0d9a2f42486bf4be05c9c818b360fa53752 > 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
