Release Artist Slideshow addon (with skin and addon integration)
One of the KODI developers pointed me to the UWP FAQ and I assume this is the issue:

Python _subprocess module is not available on UWP, so an author of the add-on must work around or not use it for UWP.

The following lines:

import subprocess, shutil, time

and…

def popenWithTimeout( command, timeout ):
    log_lines = []
    try:
        p = subprocess.Popen( command, stdout=subprocess.PIPE, stderr=subprocess.PIPE )
    except OSError:
        log_lines.append( 'error finding external script, terminating' )
        return False, log_lines
    except Exception as e:
        log_lines.append( 'unknown error while attempting to run %s' % command )
        log_lines.append( e )
        return False, log_lines
    for t in xrange( timeout * 4 ):
        time.sleep( 0.25 )
        if p.poll() is not None:
            return p.communicate(), ''
    p.kill()
    log_lines.append( 'script took too long to run, terminating' )
    return False, log_lines


Thanks!
Reply


Messages In This Thread
New Test Version Available - by pkscout - 2012-03-08, 16:26
[No subject] - by mardup - 2012-03-10, 12:26
[No subject] - by pkscout - 2012-03-11, 01:35
RE: - by mardup - 2012-03-12, 17:50
RE: - by pkscout - 2012-03-13, 03:22
New Beta Version for Testing - by pkscout - 2012-07-13, 17:54
New Beta Version for Testing - by pkscout - 2012-07-14, 22:50
Pull Request for v1.4 Submitted - by pkscout - 2012-07-20, 23:01
New Beta Version for Testing - by pkscout - 2012-08-10, 03:18
New Frodo BETA Support Files - by pkscout - 2012-11-21, 06:20
New 2.0.0 Beta Coming Soon - by pkscout - 2016-05-12, 02:54
Writing tips - by Parkerbup - 2017-02-03, 14:56
RE: [RELEASE] Artist Slideshow 1.3.0 addon (with skin and addon integration) - by Govnah - 2018-02-15, 02:07
Add-on Artist Slideshow - by jo26 - 2014-08-08, 22:58
Logout Mark Read Team Forum Stats Members Help
Artist Slideshow addon (with skin and addon integration)5