From cf69a93932d2e8548e27dc44e4b4186b2a680725 Mon Sep 17 00:00:00 2001 From: A S Lewis Date: Sun, 17 Jan 2021 14:57:55 +0000 Subject: [PATCH] Fix info operation crash, git 249 --- tartube/info.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tartube/info.py b/tartube/info.py index 1e733b4..f15e9ca 100644 --- a/tartube/info.py +++ b/tartube/info.py @@ -238,7 +238,7 @@ class InfoManager(threading.Thread): else: - if app_obj.ytdl_path_custom_flag: + if self.app_obj.ytdl_path_custom_flag: cmd_list = ['python3'] + [ytdl_path] else: cmd_list = [ytdl_path]