mirror of https://github.com/morpheus65535/bazarr
Merge branch 'development' into morpheus
This commit is contained in:
commit
ad601c60a1
|
@ -11,11 +11,19 @@ from bs4 import UnicodeDammit
|
||||||
from config import settings
|
from config import settings
|
||||||
|
|
||||||
|
|
||||||
|
def create_path_mapping_dict():
|
||||||
|
global path_mapping_series
|
||||||
|
path_mapping_series = ast.literal_eval(settings.general.path_mappings)
|
||||||
|
|
||||||
|
global path_mapping_movies
|
||||||
|
path_mapping_movies = ast.literal_eval(settings.general.path_mappings_movie)
|
||||||
|
|
||||||
|
|
||||||
def path_replace(path):
|
def path_replace(path):
|
||||||
if path is None:
|
if path is None:
|
||||||
return None
|
return None
|
||||||
|
|
||||||
for path_mapping in ast.literal_eval(settings.general.path_mappings):
|
for path_mapping in path_mapping_series:
|
||||||
if path_mapping[0] == path_mapping[1]:
|
if path_mapping[0] == path_mapping[1]:
|
||||||
continue
|
continue
|
||||||
if '' in path_mapping:
|
if '' in path_mapping:
|
||||||
|
@ -34,7 +42,7 @@ def path_replace_reverse(path):
|
||||||
if path is None:
|
if path is None:
|
||||||
return None
|
return None
|
||||||
|
|
||||||
for path_mapping in ast.literal_eval(settings.general.path_mappings):
|
for path_mapping in path_mapping_series:
|
||||||
if path_mapping[0] == path_mapping[1]:
|
if path_mapping[0] == path_mapping[1]:
|
||||||
continue
|
continue
|
||||||
if '' in path_mapping:
|
if '' in path_mapping:
|
||||||
|
@ -53,7 +61,7 @@ def path_replace_movie(path):
|
||||||
if path is None:
|
if path is None:
|
||||||
return None
|
return None
|
||||||
|
|
||||||
for path_mapping in ast.literal_eval(settings.general.path_mappings_movie):
|
for path_mapping in path_mapping_movies:
|
||||||
if path_mapping[0] == path_mapping[1]:
|
if path_mapping[0] == path_mapping[1]:
|
||||||
continue
|
continue
|
||||||
if '' in path_mapping:
|
if '' in path_mapping:
|
||||||
|
@ -72,7 +80,7 @@ def path_replace_reverse_movie(path):
|
||||||
if path is None:
|
if path is None:
|
||||||
return None
|
return None
|
||||||
|
|
||||||
for path_mapping in ast.literal_eval(settings.general.path_mappings_movie):
|
for path_mapping in path_mapping_movies:
|
||||||
if path_mapping[0] == path_mapping[1]:
|
if path_mapping[0] == path_mapping[1]:
|
||||||
continue
|
continue
|
||||||
if '' in path_mapping:
|
if '' in path_mapping:
|
||||||
|
|
|
@ -9,6 +9,7 @@ from cork import Cork
|
||||||
from config import settings
|
from config import settings
|
||||||
from get_args import args
|
from get_args import args
|
||||||
from logger import configure_logging
|
from logger import configure_logging
|
||||||
|
from helper import create_path_mapping_dict
|
||||||
|
|
||||||
from dogpile.cache.region import register_backend as register_cache_backend
|
from dogpile.cache.region import register_backend as register_cache_backend
|
||||||
import subliminal
|
import subliminal
|
||||||
|
@ -130,3 +131,4 @@ def init_binaries():
|
||||||
|
|
||||||
|
|
||||||
init_binaries()
|
init_binaries()
|
||||||
|
create_path_mapping_dict()
|
||||||
|
|
Loading…
Reference in New Issue