aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--yeetube.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/yeetube.el b/yeetube.el
index 8eb06d2..da9d998 100644
--- a/yeetube.el
+++ b/yeetube.el
@@ -276,7 +276,8 @@ WHERE indicates where in the buffer the update should happen."
(let ((default-directory yeetube-download-directory))
(call-process-shell-command
(if yeetube-download-audio-format
- (format "%s '%s' --extract-audio --audio-format %s" (executable-find "yt-dlp") url yeetube-download-audio-format)
+ (format "%s '%s' --extract-audio --audio-format %s"
+ (executable-find "yt-dlp") url yeetube-download-audio-format)
(format "%s '%s'" (executable-find "yt-dlp") url))
nil 0)
(message "Downloading %s " url)))))