From 9a11d5995c3d44580e28890b9e8d4f457dd75526 Mon Sep 17 00:00:00 2001 From: JJJHolscher Date: Mon, 9 Sep 2024 17:44:22 +0200 Subject: [PATCH] corrected a typo --- src/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.py b/src/main.py index 21c9f46..d06baff 100755 --- a/src/main.py +++ b/src/main.py @@ -49,7 +49,7 @@ def play_playlist(playlist): def test_playlist(playlist, duration=None): print( - "testing playlist, press enter to start if you hear the playlist", + "testing", playlist, "press enter to start if you hear the playlist", end="", flush=True, ) @@ -142,7 +142,7 @@ if __name__ == "__main__": parser = ArgumentParser() parser.add_argument( "--playlist", - default=os.path.expanduser('~') + "a/m", + default=os.path.expanduser('~') + "/a/m", help="path to the folder with the playlist to play", ) parser.add_argument(