diff options
| author | tassaron | 2017-08-13 15:54:36 -0400 |
|---|---|---|
| committer | tassaron | 2017-08-13 15:54:36 -0400 |
| commit | 9c8792df9bad068fed8a9a1777b2774c103c9ce4 (patch) | |
| tree | 09943b2b90bc50ccb6d7e08946f88f7104c00297 /src | |
| parent | a233d36ce29be459cc9cc041e77f96b9f40d0ed0 (diff) | |
made an authors file
Diffstat (limited to 'src')
| -rw-r--r-- | src/video_thread.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/video_thread.py b/src/video_thread.py index 63d06ee..5acbda4 100644 --- a/src/video_thread.py +++ b/src/video_thread.py @@ -67,7 +67,9 @@ class Worker(QtCore.QObject): self.closePipe() self.cancelExport() self.error = True - comp._error.emit('A render node failed critically.', str(e)) + msg = 'A render node failed critically.' + log.critical(msg) + comp._error.emit(msg, str(e)) while not self.stopped: audioI = self.compositeQueue.get() |
