corrected a typo

This commit is contained in:
JJJHolscher 2024-09-09 17:44:22 +02:00
parent f7b316b645
commit 9a11d5995c

View File

@ -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(