aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/dl_formats.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/dl_formats.py b/app/dl_formats.py
index 184f9f9..f1b3881 100644
--- a/app/dl_formats.py
+++ b/app/dl_formats.py
@@ -16,7 +16,7 @@ def get_format(format: str, quality: str) -> str:
video_fmt = ""
final_fmt = ""
- if format.startswith("custom: "):
+ if format.startswith("custom:"):
final_fmt = format[7:]
elif format == "any":
final_fmt = "bv*+ba/b"
bgstack15