Author: duncan
Date: Tue Oct  3 21:08:55 2006
New Revision: 8309

Modified:
   branches/rel-1-5/freevo/src/video/plugins/dvdimage.py

Log:
video-dvdimage-0.1 doesn't like a ENTER at Play Title

Modified: branches/rel-1-5/freevo/src/video/plugins/dvdimage.py
==============================================================================
--- branches/rel-1-5/freevo/src/video/plugins/dvdimage.py       (original)
+++ branches/rel-1-5/freevo/src/video/plugins/dvdimage.py       Tue Oct  3 
21:08:55 2006
@@ -60,8 +60,10 @@
 
             self.files = []
             self.item  = item
-            fs         = item.files.get()
+            if not item.files:
+                return []
 
+            fs = item.files.get()
             for f in fs:
                 if f.endswith('.img') or f.endswith('.iso'):
                     self.files.append(f)

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