From 9000ff1680ee5ed6d6fa95aec12e7139c31aaed4 Mon Sep 17 00:00:00 2001 From: "Roncero Blanco, Edgar" Date: Mon, 26 May 2025 13:53:52 +0200 Subject: [PATCH] Fix input path parsing by stripping quotes from user input --- src/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.py b/src/app.py index ec35c4e..7638de5 100644 --- a/src/app.py +++ b/src/app.py @@ -12,7 +12,7 @@ GROUP_SIZE = 5 run_date = datetime.now().strftime("%Y-%m-%d_%H-%M-%S") # Ask for source path -source_input = input("Enter the full path to your source MP3 folder: ").strip() +source_input = input("Enter the full path to your source MP3 folder: ").strip().strip('"') source_media_path = Path(source_input) if not source_media_path.exists() or not source_media_path.is_dir():