diff options
-rw-r--r-- | hypervideo_gui.py | 3 |
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() |