Skip to content

Commit

Permalink
TEST: Windows unicode
Browse files Browse the repository at this point in the history
  • Loading branch information
flyingrub committed Jan 28, 2015
1 parent 433ef84 commit 435da05
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 @@ -354,7 +354,7 @@ def download_track(track, playlist_name=None):
log('', strverbosity=1)
return
title = track.title
title = title.encode('utf-8', 'ignore').decode('utf-8')
title = title.encode('utf-8', 'ignore').decode(sys.stdout.encoding)
log("Downloading " + title, strverbosity=1)

#filename
Expand Down

0 comments on commit 435da05

Please sign in to comment.