diff options
author | Thanos Apollo <[email protected]> | 2023-07-16 10:24:34 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-07-16 10:30:00 +0300 |
commit | aecdf2e1018a37a3d248f656df4ac68c8b191133 (patch) | |
tree | 50736aac34c7082540b786501f032344238c0ded | |
parent | b61e379f43efb51932180f588dd670d7303c6d8f (diff) |
fix: untabify
-rw-r--r-- | yeetube.el | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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) |