aboutsummaryrefslogtreecommitdiffstats
path: root/yeetube.el
diff options
context:
space:
mode:
authorThanos Apollo <[email protected]>2023-09-28 14:45:14 +0300
committerThanos Apollo <[email protected]>2023-09-28 14:45:14 +0300
commit19f07b95144834aae8ffb707f82b0e4b55a0f12d (patch)
tree13c87de4a5650c846ef2756aff20376e62ddff1c /yeetube.el
parentbc15e23c3f558bbf204111453abd5c92406ef2d2 (diff)
yeetube-download-videos: format shell commands
Diffstat (limited to 'yeetube.el')
-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)))))