summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorakspecs <akspecs@gmail.com>2021-11-07 01:50:40 -0800
committerakspecs <akspecs@gmail.com>2021-11-07 01:50:40 -0800
commitac591ff874721b9790769bffe475685d84f86f84 (patch)
treeec80d1384f613dc1ab32b8ae6e14c287dab9b809
parent3b4f3d3d918908831b29783a619d7132f41fedbc (diff)
downloadsplit-album-ac591ff874721b9790769bffe475685d84f86f84.tar.gz
split_album.py: reword description - album/playlist
also, chmod 755 split_album.py
-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',