aboutsummaryrefslogtreecommitdiffstats
path: root/yt_dlp/extractor/vine.py
diff options
context:
space:
mode:
Diffstat (limited to 'yt_dlp/extractor/vine.py')
-rw-r--r--yt_dlp/extractor/vine.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/yt_dlp/extractor/vine.py b/yt_dlp/extractor/vine.py
index 07fce0daa..e59b1037b 100644
--- a/yt_dlp/extractor/vine.py
+++ b/yt_dlp/extractor/vine.py
@@ -6,6 +6,7 @@ from .common import InfoExtractor
from ..compat import compat_str
from ..utils import (
determine_ext,
+ format_field,
int_or_none,
unified_timestamp,
)
@@ -92,7 +93,7 @@ class VineIE(InfoExtractor):
username = data.get('username')
- alt_title = 'Vine by %s' % username if username else None
+ alt_title = format_field(username, template='Vine by %s')
return {
'id': video_id,