From 0b2e3e2255236319f455c05071e486b0ad931ed0 Mon Sep 17 00:00:00 2001 From: rlaphoenix Date: Sun, 26 Mar 2023 22:41:23 +0100 Subject: [PATCH] Remove the muxed download path log It's not very appealing, nor is it info the user realistically needs for every download. They could check `devine env info` to see where downloads go if they are unsure. --- devine/commands/dl.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/devine/commands/dl.py b/devine/commands/dl.py index 08b834b..3af6a39 100644 --- a/devine/commands/dl.py +++ b/devine/commands/dl.py @@ -594,7 +594,7 @@ class dl: for track in list(title.tracks.videos): title.tracks.videos = [track] - final_path = self.mux_tracks( + self.mux_tracks( title, season_folder=not no_folder, add_source=not no_source, @@ -609,7 +609,6 @@ class dl: downloaded_table = Table.grid(expand=True) downloaded_table.add_row(f" :tada: Download Finished in [progress.elapsed]{title_dl_time}[/]!") - downloaded_table.add_row(Text(str(final_path), overflow="fold")) console.print(Padding( downloaded_table, (0, 5, 1, 5)