You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I needed to make a few tweaks for this to work "as advertised" on macOS, Python 2.7.13, with a .m3u file generated from iTunes playlist export on macOS.
The 'U' in the open statement stands for universal line ending support. The .m3u from iTunes has \r/^M as its line separator characters.
I needed to make a few tweaks for this to work "as advertised" on macOS, Python 2.7.13, with a .m3u file generated from iTunes playlist export on macOS.
The
'U'
in the open statement stands for universal line ending support. The .m3u from iTunes has\r
/^M
as its line separator characters.Found here: http://stackoverflow.com/questions/4158645/make-the-readline-method-of-python-recognize-both-end-of-line-variations
Don't have time to make real PR at the moment.
The text was updated successfully, but these errors were encountered: