1
0
Fork 0
mirror of https://github.com/morpheus65535/bazarr synced 2024-12-29 11:06:02 +00:00
bazarr/custom_libs/subliminal_patch/refiners/symlinks.py

21 lines
351 B
Python

# coding=utf-8
from __future__ import absolute_import
import os
from .common import update_video
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)