Tags: patch
Hi,
If I'm not wrong, there's some unneeded code in rebuildd/Job.py that
seems to be the cause of the crash. Removing it seems to fix the problem.
diff --git a/rebuildd/Job.py b/rebuildd/Job.py
index f7d1506..47b7ece 100644
--- a/rebuildd/Job.py
+++ b/rebuildd/Job.py
@@ -52,8 +52,6 @@ class Job(threading.Thread, sqlobject.SQLObject):
threading.Thread.__init__(self)
sqlobject.SQLObject.__init__(self, *args, **kwargs)
- if self.log is None:
- log = Log(job=self)
self.do_quit = threading.Event()
self.status_lock = threading.Lock()