From 9c8792df9bad068fed8a9a1777b2774c103c9ce4 Mon Sep 17 00:00:00 2001 From: tassaron Date: Sun, 13 Aug 2017 15:54:36 -0400 Subject: made an authors file --- AUTHORS | 11 +++++++++++ src/video_thread.py | 4 +++- 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 AUTHORS diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..417d97e --- /dev/null +++ b/AUTHORS @@ -0,0 +1,11 @@ +Original version created by Martin Kaistra +Version 2 created by tassaron and DH4 + +Contributors: +* Martin Kaistra +* Brianna Rainey +* DH4 + +Pull Requests By: +* HunterwolfAT +* rikai 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() -- cgit v1.2.3