You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bazarr/libs/subliminal_patch/refiners/symlinks.py

22 lines
351 B

6 years ago
# coding=utf-8
5 years ago
from __future__ import absolute_import
6 years ago
import os
5 years ago
from .common import update_video
6 years ago
def refine(video, **kwargs):
"""
:param video:
:param kwargs:
:return:
"""
try:
orig_fn = os.path.basename(os.path.realpath(video.name))
except:
return
if orig_fn:
update_video(video, orig_fn)