This commit is contained in:
Kovid Goyal 2026-04-02 20:27:56 +05:30
commit 9e05bb1f69
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -31,6 +31,11 @@ class WorkerError(Exception):
self.orig_tb = orig_tb
self.log_path = log_path
if orig_tb:
self.add_note(f'Original traceback:\n{orig_tb}')
if log_path:
self.add_note(f'Log path: {log_path}')
class ConnectedWorker(Thread):