diff options
Diffstat (limited to 'crates/yt_dlp/src/lib.rs')
-rw-r--r-- | crates/yt_dlp/src/lib.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/crates/yt_dlp/src/lib.rs b/crates/yt_dlp/src/lib.rs index ddbce7d..9fd0200 100644 --- a/crates/yt_dlp/src/lib.rs +++ b/crates/yt_dlp/src/lib.rs @@ -271,10 +271,7 @@ pub fn progress_hook(py: Python<'_>, input: &Bound<'_, PyDict>) -> PyResult<()> stdout().flush()?; } "finished" => { - println!( - "-> Finished downloading: '{}'", - c!("34;1", get_title(true)) - ); + println!("-> Finished downloading: '{}'", c!("34;1", get_title(true))); } "error" => { panic!("-> Error while downloading: {}", get_title(true)) |