-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Oddly non-functioning #49
Comments
Does ExamplePlaylist.csv import? Double check your csv file against the example playlist to see if it matches the format. The ExamplePlaylist.csv file has a lot of comments in it and some simple text searches at the beginning. You can ignore those, based on the lines you narrowed in on it looks like you are attempting to import a details track. a details track line should have the following format: title,artist,album also, other things to try is to take your playlist you are trying to import and just a few songs before importing everything. there could be a character or formatting issue that is throwing things off. you should see something like the following when importing the ExamplePlaylist.csv
|
I've had little success getting this to work and it ultimately came down to:
common.py lines 116-120 'details[artist..album..etc] = None' // record nothing for the track
and
ImportList.py lines 231-233 'skip track if details[artist..album..etc] = None' // check for the above nerf
It was an odd alignment amounting in zero functionality, at least that's what I've found. What's the go? I assume I'm missing something but if not, thought it worth a mention ...
The text was updated successfully, but these errors were encountered: