Author: tack
Date: Wed Apr 26 16:09:38 2006
New Revision: 1512

Modified:
   trunk/metadata/src/audio/eyed3info.py

Log:
Only ignore UnicodeError exceptions.


Modified: trunk/metadata/src/audio/eyed3info.py
==============================================================================
--- trunk/metadata/src/audio/eyed3info.py       (original)
+++ trunk/metadata/src/audio/eyed3info.py       Wed Apr 26 16:09:38 2006
@@ -155,7 +155,7 @@
                     if hasattr(frame, "text") and isinstance(frame.text, 
unicode):
                         try:
                             frame.text = 
frame.text.encode('latin-1').decode('utf-8')
-                        except:
+                        except UnicodeError:
                             pass
 
             for k, var in MP3_INFO_TABLE.items():


-------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Freevo-cvslog mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to