Update dl.py

master
Arjix 2021-10-17 10:22:33 +03:00 committed by GitHub
parent 8158cc0246
commit d105b6e3b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -94,13 +94,13 @@ def command(ctx, anime_url, episode_range, url, player, skip_download, quality,
""" Download the anime using the url or search for it.
"""
if episode_range:
"""if episode_range:
regexed_range = re.compile("^:?(\d+)?:?(\d+)?$").search(episode_range)
# Prevent such cases as: :5: and :1:1
if not regexed_range or (len(regexed_range.groups()) >= episode_range.count(":") and episode_range.count(":") != 1):
raise click.UsageError(
"Invalid value for '--episode' / '-e': {} is not a valid range".format(episode_range))
"""
if sub and dub:
raise click.UsageError(
"--dub/-d and --sub/-s flags cannot be used together")