about summary refs log tree commit diff stats
path: root/crates/yt_dlp
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-06-17 08:58:52 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-06-17 08:58:52 +0200
commit987cff2b5996cc86069dc1d9cbb0f465c32d391c (patch)
tree604c46da88d00968035e21efc62f699095a8d9cc /crates/yt_dlp
parentfix(yt_dlp/post_processors): Register in python (diff)
downloadyt-987cff2b5996cc86069dc1d9cbb0f465c32d391c.zip
fix(yt_dlp): Typos in strings
Diffstat (limited to 'crates/yt_dlp')
-rw-r--r--crates/yt_dlp/src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/yt_dlp/src/lib.rs b/crates/yt_dlp/src/lib.rs
index d0465e1..1912831 100644
--- a/crates/yt_dlp/src/lib.rs
+++ b/crates/yt_dlp/src/lib.rs
@@ -102,7 +102,7 @@ impl YoutubeDL {
             error!(
                 "No PYTHONPATH found or invalid utf8. \
                 This means, that you probably did not \
-                supply the yt_dlp!"
+                supply a yt_dlp python package!"
             );
         }
 
@@ -665,7 +665,7 @@ fn write_exception<W: Write>(
     if exc_class.fast_issubclass(vm.ctx.exceptions.syntax_error) {
         unreachable!(
             "A syntax error should never be raised, \
-                                as yt_dlp should not have them and neither our embedded code"
+            as yt_dlp should not have them and neither our embedded code"
         );
     }