Couldn't get it working using the 0.6.1 update. However, had the chance to disable program icon download and that brought things back to "normal". Things are good again
The "fix" should have been adding str() to the icon fn line 349. I think I was rushing and did it wrong. Try changing the icon section starting at line 348 in zap2xml.py to the following:
Code
if "-I" in options:
fn = os.path.join(cacheDir,"I" + str(cp) + ".js.gz")
if not os.path.isfile(fn):
data = getURL(urlRoot + "gridDetailService?rtype=pgmimg&pgmId=" + cp)
if data: #sometimes we fail to get the url try to keep going
wbf(fn, data)
log.pout("[i] Parsing: " + cp,'info')
parseJSONI(fn)[/i]
If that doesn't work - I'd love to see the log error. Thanks!