Release Artist Slideshow addon (with skin and addon integration)
(2017-01-27, 21:52)spiderlane Wrote: Notice the %0A being added after the MBID which is the escaped linefeed character. What appears to be happening is that this call at line 534

Code:
rawdata = readFile( filename )

is returning the contents of the file with a "\n" at the end.

So I made an edit to the default.py adding the following at line 536 to strip this away

Code:
rawdata = rawdata.rstrip('\n')

...and bingo everything starts working as expected. So, I'm a happy man, but aware that might just be a hack. Is this something you've come across before? It would appear that readFile() always adds the "\n" at the end in python (I'm a Java programmer by background and don't have much python experience)

Those musicbrainz.nfo files weren't originally meant to be manually added, so I suspect this has never come up. My bet is it has something to do with the default line ending python uses versus what your specific platform does. Since python was writing the file and then reading it, it never mattered, but with you creating them manually it probably does. Anyway, your solution probably makes the most sense. I'll add that to the AS code (since there's no harm in stripping something that isn't there is most cases). It'll get pushed out whenever I do the next update (which might not be for awhile).
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
RE: [RELEASE] Artist Slideshow 1.3.0 addon (with skin and addon integration) - by pkscout - 2017-01-27, 23:47
Writing tips - by Parkerbup - 2017-02-03, 14:56
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