summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rwxr-xr-x[-rw-r--r--]split_album.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/split_album.py b/split_album.py
index 141b4f6..7e44c70 100644..100755
--- a/split_album.py
+++ b/split_album.py
@@ -1,6 +1,6 @@
 #!/usr/bin/env python3
 """
-split songs from an album contained in one file into their own files
+split songs from an album or playlist contained in one file into their own files
 """
 
 # TODO: multi-processing (maybe with concurent.futures?)
@@ -112,7 +112,7 @@ def parse_input(input_txt_file, multimedia_file):
 
 def main():
     arg_parser = argparse.ArgumentParser(
-        description="split songs from an album contained in one file into their own files"
+        description="split songs from an album or playlist contained in one file into their own files"
     )
     arg_parser.add_argument(
         'input_txt',