diff options
-rw-r--r-- | yeetube.el | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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))))) |