aboutsummaryrefslogtreecommitdiffstats
path: root/hypervideo_gui.py
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2019-12-11 20:00:15 -0500
committerJesús <heckyel@hyperbola.info>2019-12-11 20:00:15 -0500
commitbd78c69ba7c903546ca36d54e9adcf93b4f945ba (patch)
tree03633c17bfefa3bc0914342a31c7fdf2cdf47461 /hypervideo_gui.py
parentdae3d5063652967bd8dcc9c769240b43ac3e8384 (diff)
downloadhypervideo-gui-bd78c69ba7c903546ca36d54e9adcf93b4f945ba.tar.lz
hypervideo-gui-bd78c69ba7c903546ca36d54e9adcf93b4f945ba.tar.xz
hypervideo-gui-bd78c69ba7c903546ca36d54e9adcf93b4f945ba.zip
pep8
Diffstat (limited to 'hypervideo_gui.py')
-rw-r--r--hypervideo_gui.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/hypervideo_gui.py b/hypervideo_gui.py
index 23ff0df..89bfa85 100644
--- a/hypervideo_gui.py
+++ b/hypervideo_gui.py
@@ -269,7 +269,8 @@ class App(QMainWindow):
else:
# valid url - fetch the video formats in background daemon thread
self.statusBar().showMessage('Downloading Video Formats')
- thread = threading.Thread(target=get_video_formats_thread_helper, args=(self, self.url_catch(), ))
+ thread = threading.Thread(target=get_video_formats_thread_helper,
+ args=(self, self.url_catch(), ))
thread.daemon = True
thread.start()