Fix file naming not to strip first digit of id

fixes #60
This commit is contained in:
Ivan Habunek 2021-03-22 07:12:05 +01:00
parent 2242af05fc
commit 3f143b0c84
No known key found for this signature in database
GPG Key ID: CDBD63C43A30BB95

View File

@ -73,7 +73,7 @@ def _video_target_filename(video, format):
name = "_".join([
date,
video['id'][1:],
video['id'],
video['creator']['login'],
utils.slugify(video['title']),
])