Skip to content

Commit 8e5d35c

Browse files
committed
Fill in TODO comments.
1 parent b3a5ff6 commit 8e5d35c

1 file changed

Lines changed: 8 additions & 3 deletions

File tree

python2.7/music-organizer.py

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,16 @@
2727
fix the tag information.''')
2828
parser.add_argument('--ignore-multiple-artists', action='store_true',
2929
dest='ignore_multiple_artists',
30-
help='TODO')
30+
help='''This script will prompt for confirmation if an artist
31+
directory has songs with more than 2 different tags.
32+
This flag disables the confirmation and won't perform this check.''')
3133
parser.add_argument('--collection', action='store_true',
32-
help='TODO')
34+
help='''Operate in 'collection' mode and run 'artist' mode on
35+
every subdirectory.''')
3336
parser.add_argument('--artist', action='store_true',
34-
help='TODO')
37+
help='''Operate in 'artist' mode and copy all songs to the
38+
root of the directory and cleanly format the names to
39+
be easily typed and navigated in a shell.''')
3540
args = parser.parse_args()
3641

3742
if args.collection and args.artist:

0 commit comments

Comments
 (0)