Author: duncan
Date: Sun Feb 25 08:34:56 2007
New Revision: 9271

Modified:
   branches/rel-1/freevo/src/helpers/makelogos.py

Log:
Added error messages when an image cannot be saved


Modified: branches/rel-1/freevo/src/helpers/makelogos.py
==============================================================================
--- branches/rel-1/freevo/src/helpers/makelogos.py      (original)
+++ branches/rel-1/freevo/src/helpers/makelogos.py      Sun Feb 25 08:34:56 2007
@@ -62,6 +62,6 @@
         output_file = config.TV_LOGOS + '/' + channel + '.png'
         try:
             img.save(output_file)
-        except IOError:
-            pass
+        except IOError, e:
+            print e
 

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