movie.py: deal with special chars that cause problems in afp/smb (?<>)
This commit is contained in:
parent
16d16b0c45
commit
2879c66d46
1 changed files with 2 additions and 1 deletions
|
@ -36,7 +36,7 @@ The Title[ ([SXX][EYY[+ZZ|-ZZ]])[ Episode Title]][.Version][.Part XY[.Part Title
|
|||
|
||||
def format_path(data, directory_key='director'):
|
||||
def format_underscores(string):
|
||||
return re.sub('^\.|\.$|/|:', '_', string)
|
||||
return = re.sub('^\.|\.$|:|/|\?|<|>', '_', string)
|
||||
is_episode = data['episode'] != None or data['season'] != None
|
||||
director = data['directorSort'] or ['Unknown Director']
|
||||
title = data['seriesTitle' if data['isEpisode'] else 'title'] or 'Untitled'
|
||||
|
@ -203,6 +203,7 @@ def parse_path(path, directory_key='director'):
|
|||
def parse_underscores(string):
|
||||
string = re.sub('^_', '.', string)
|
||||
string = re.sub('_$', '.', string)
|
||||
string = re.sub('(?<= )_(.+)_(?= )', '<\g<1>>', string)
|
||||
string = re.sub('(?<=\w)_(?=\w)', '/', string)
|
||||
string = re.sub(' _ ', ' / ', string)
|
||||
string = re.sub('(?<=\w)_ ', ': ', string)
|
||||
|
|
Loading…
Reference in a new issue