From dc027f1e1b1fa52344f3abfc0562fc633cb73d61 Mon Sep 17 00:00:00 2001 From: Jackson Taylor Date: Wed, 22 Mar 2023 17:47:55 -0400 Subject: Ignore virtual envs --- .gitignore | 4 +++- jamos | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 731010f..437de7b 100644 --- a/.gitignore +++ b/.gitignore @@ -4,4 +4,6 @@ music/* cookies.txt # VSCode settings -.vscode/* \ No newline at end of file +.vscode/* + +venv/* diff --git a/jamos b/jamos index e947e3d..765c17c 100755 --- a/jamos +++ b/jamos @@ -200,7 +200,7 @@ def create_downloader(music_directory, cookies): audio_options = { 'format': 'mp3/bestaudio/best', 'cookiefile': cookies, - 'outtmpl': music_directory + '%(title)s.%(ext)s', + 'outtmpl': os.path.join(music_directory, '%(title)s.%(ext)s'), 'postprocessors': [ { 'key': 'FFmpegExtractAudio', @@ -298,7 +298,7 @@ if __name__ == "__main__": print("Done".format(f)) print("Moving file...", end="") move_file(f, metadata, music_directory) - print("Done", end="") + print("Done") counter += 1 except Exception as e: # just gonna print this and move on to the next file. -- cgit v1.2.3