Fix naming for category setup

Previous naming could imply that a comma was required between categories
This commit is contained in:
David
2023-01-08 15:12:46 +01:00
committed by GitHub
parent 933ee36a18
commit 0413d612bb

View File

@@ -102,7 +102,7 @@ def main(config, config_file, debug):
if skip_categories != []:
if input("Skip categories already specified. Change them? (y/n) ") == "y":
categories = input(
"Enter skip categories (space sepparated) Options: [sponsor, selfpromo, exclusive_access, interaction, poi_highlight, intro, outro, preview, filler, music_offtopic:\n"
"Enter skip categories (space sepparated)(don't add a comma in between) Options: [sponsor selfpromo exclusive_access interaction poi_highlight intro outro preview filler music_offtopic:\n"
)
skip_categories = categories.split(" ")
else: