Author: duncan
Date: Sat Dec  8 11:05:56 2007
New Revision: 10192

Log:
Added the exception to the Crash! line


Modified:
   branches/rel-1-7/freevo/src/main.py

Modified: branches/rel-1-7/freevo/src/main.py
==============================================================================
--- branches/rel-1-7/freevo/src/main.py (original)
+++ branches/rel-1-7/freevo/src/main.py Sat Dec  8 11:05:56 2007
@@ -480,8 +480,8 @@
 except SystemExit:
     pass
 
-except:
-    _debug_('Crash!', config.DCRITICAL)
+except Exception, e:
+    _debug_('Crash!: %s' % (e), config.DCRITICAL)
     try:
         tb = sys.exc_info()[2]
         fname, lineno, funcname, text = traceback.extract_tb(tb)[-1]

-------------------------------------------------------------------------
SF.Net email is sponsored by:
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
Freevo-cvslog mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to