fix default format (closes #85)

This commit is contained in:
Alex Shnitman 2021-11-27 16:45:21 +02:00
parent 224deb9792
commit 51b8100362
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ def get_format(format: str, quality: str) -> str:
Returns: Returns:
dl_format: Formatted download string dl_format: Formatted download string
""" """
format = format or "best" format = format or "any"
if format.startswith("custom:"): if format.startswith("custom:"):
return format[7:] return format[7:]