aboutsummaryrefslogtreecommitdiff
path: root/src/core.py
diff options
context:
space:
mode:
authortassaron2017-08-12 22:51:46 -0400
committertassaron2017-08-12 22:51:46 -0400
commitd6b6083f80ae609c801ef63285718325cd71d0c9 (patch)
tree7616931b30c5031ef6d5fa5b4d6dd98b0ef0ae03 /src/core.py
parent282f1c4b12b485a567f0d055832a5bf4409404a3 (diff)
rv pointless optimization & remove circular imports (again...)
the last commit does showcase an enlightening bug however
Diffstat (limited to 'src/core.py')
-rw-r--r--src/core.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core.py b/src/core.py
index 4023542..2b85f7e 100644
--- a/src/core.py
+++ b/src/core.py
@@ -10,7 +10,6 @@ from importlib import import_module
import logging
import toolkit
-import video_thread
log = logging.getLogger('AVP.Core')
@@ -418,6 +417,7 @@ class Core:
def newVideoWorker(self, loader, audioFile, outputPath):
'''loader is MainWindow or Command object which must own the thread'''
+ import video_thread
self.videoThread = QtCore.QThread(loader)
videoWorker = video_thread.Worker(
loader, audioFile, outputPath, self.selectedComponents