From aecdf2e1018a37a3d248f656df4ac68c8b191133 Mon Sep 17 00:00:00 2001 From: Thanos Apollo Date: Sun, 16 Jul 2023 10:24:34 +0300 Subject: fix: untabify --- yeetube.el | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/yeetube.el b/yeetube.el index 261f294..f90aaa9 100644 --- a/yeetube.el +++ b/yeetube.el @@ -265,12 +265,12 @@ PREFIX [[URL/watch?v=VIDEOID][VIDEOTITLE ]]" (async-shell-command (if yeetube-download-audio-format (format "%s %s --extract-audio --audio-format %s" - (shell-quote-argument yeetube--yt-dlp) + (shell-quote-argument yeetube--yt-dlp) (shell-quote-argument url) (shell-quote-argument yeetube-download-audio-format)) (format "%s %s" - (shell-quote-argument yeetube--yt-dlp) - (shell-quote-argument url))) + (shell-quote-argument yeetube--yt-dlp) + (shell-quote-argument url))) (message "Downloading %s " url)))))) (defun yeetube-download-videos () @@ -309,12 +309,12 @@ then run this command interactively." (async-shell-command (if yeetube-download-audio-format (format "%s %s --extract-audio --audio-format %s -o %s" - (shell-quote-argument yeetube--yt-dlp) + (shell-quote-argument yeetube--yt-dlp) (shell-quote-argument url) (shell-quote-argument yeetube-download-audio-format) (shell-quote-argument name)) (format "%s %s -o %s" - (shell-quote-argument yeetube--yt-dlp) + (shell-quote-argument yeetube--yt-dlp) (shell-quote-argument url) (shell-quote-argument name))) buffer-name) -- cgit v1.2.3