Author: tack
Date: Wed Mar  7 21:18:58 2007
New Revision: 2533

Modified:
   trunk/metadata/src/video/mkv.py

Log:
Do not convert chapter name to string as it may be unicode.


Modified: trunk/metadata/src/video/mkv.py
==============================================================================
--- trunk/metadata/src/video/mkv.py     (original)
+++ trunk/metadata/src/video/mkv.py     Wed Mar  7 21:18:58 2007
@@ -556,7 +556,7 @@
                     if display_elem.get_id() == MATROSKA_CHAPTER_STRING_ID:
                         chap.name = display_elem.get_utf8()
 
-        log.debug('Chapter "%s" found' % str(chap.name))
+        log.debug('Chapter "%s" found' % chap.name)
         chap.id = len(self.chapters)
         self.chapters.append(chap)
 

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Freevo-cvslog mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to