Author: duncan
Date: Thu Mar 15 21:09:49 2007
New Revision: 9331

Modified:
   branches/rel-1/freevo/src/item.py

Log:
[ 1679595 ] Crash if audio directory contains accented characters
Fix applied, but the problem has not yet been reproduced


Modified: branches/rel-1/freevo/src/item.py
==============================================================================
--- branches/rel-1/freevo/src/item.py   (original)
+++ branches/rel-1/freevo/src/item.py   Thu Mar 15 21:09:49 2007
@@ -285,7 +285,7 @@
                     if format_string.startswith('/'):
                         audiocover = util.getimage(filemask)
                     else:
-                        audiocover = 
util.getimage(os.path.dirname(self.filename)+'/'+filemask)
+                        audiocover = 
util.getimage(os.path.join(os.path.dirname(self.filename), filemask))
                     if audiocover:
                         self.image = audiocover
                         self.files.image = audiocover

-------------------------------------------------------------------------
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