From 2636685eeffb77257845fe36061362e3352fcb6f Mon Sep 17 00:00:00 2001 From: Jean-Philippe Orsini Date: Sun, 17 Jan 2016 23:31:08 +0100 Subject: [PATCH] cleanup --- mp3tohtml.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mp3tohtml.py b/mp3tohtml.py index d2e4529..eb4cc5e 100755 --- a/mp3tohtml.py +++ b/mp3tohtml.py @@ -21,7 +21,7 @@ for f in files: print "\t" try: - artist = tag.getArtist().decode('utf-8') + artist = tag.getArtist() print "\t\t" + artist + "" except UnicodeEncodeError: print "\t\t" -- 2.7.4