[SCM] live-studio branch, master, updated. be51da814fb12d25dce46a7f078a46f5c89bd777

Chris Lamb lamby at debian.org
Fri Jul 30 02:52:35 UTC 2010


The following commit has been merged in the master branch:
commit 228ad5c9dd0f821d1d163fbab472e1a39d0782e4
Author: Chris Lamb <lamby at debian.org>
Date:   Thu Jul 29 11:42:30 2010 -0400

    Print the exception if we get one whilst building.
    
    Signed-off-by: Chris Lamb <lamby at debian.org>

diff --git a/live_studio/queue/management/commands/queue_runner.py b/live_studio/queue/management/commands/queue_runner.py
index 0aa3f50..d988ee5 100644
--- a/live_studio/queue/management/commands/queue_runner.py
+++ b/live_studio/queue/management/commands/queue_runner.py
@@ -1,5 +1,6 @@
 import time
 import datetime
+import traceback
 
 from django.core.management.base import NoArgsCommand
 
@@ -23,6 +24,7 @@ class Command(NoArgsCommand):
                     self.handle_entry(entry)
                     update(success=True)
                 except:
+                    traceback.print_exc()
                     continue
                 finally:
                     update(finished=datetime.datetime.utcnow())

-- 
live-studio



More information about the debian-live-changes mailing list