Skip to content

Commit

Permalink
fix language crash
Browse files Browse the repository at this point in the history
  • Loading branch information
phoenixthrush committed Nov 11, 2024
1 parent 68509ac commit acf8231
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aniworld/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ def parse_arguments():
action_group.add_argument('-a', '--action', type=str, choices=['Watch', 'Download', 'Syncplay'], help='Action to perform')
action_group.add_argument('-o', '--output', type=str, help='Download directory E.g. /Users/phoenixthrush/Downloads')
action_group.add_argument('-O', '--output-directory', type=str, help='Final download directory E.g ExampleDirectory, defaults to anime name if not specified')
action_group.add_argument('-L', '--language', type=str, choices=['German Dub', 'English Sub', 'German Sub'], help='Language choice')
action_group.add_argument('-L', '--language', type=str, choices=['German Dub', 'English Sub', 'German Sub'], default=aniworld_globals.DEFAULT_LANGUAGE, help='Language choice')
action_group.add_argument('-p', '--provider', type=str, choices=['Vidoza', 'Streamtape', 'VOE', 'Doodstream'], help='Provider choice')

# Anime4K options
Expand Down

0 comments on commit acf8231

Please sign in to comment.