Skip to content

Commit

Permalink
Possible fix: windows encoding
Browse files Browse the repository at this point in the history
  • Loading branch information
flyingrub committed Jan 19, 2015
1 parent 7cb0f89 commit a0af030
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scdl/scdl.py
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ def download_track(track):
log('', strverbosity=1)
return
title = track.title
title = title.replace("–", "-")
title = title.encode('utf-8', 'ignore')
log("Downloading " + title, strverbosity=1)

#filename
Expand Down

0 comments on commit a0af030

Please sign in to comment.