movie.py: correctly format Unknown Director
This commit is contained in:
parent
10b71a5c23
commit
458455592b
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ def format_path(data):
|
||||||
year = data['series_year' if data['is_episode'] else 'year']
|
year = data['series_year' if data['is_episode'] else 'year']
|
||||||
return '/'.join(map(format_underscores, [
|
return '/'.join(map(format_underscores, [
|
||||||
data['directory'],
|
data['directory'],
|
||||||
'; '.join(director_sort),
|
'; '.join(director_sort) or 'Unknown Director',
|
||||||
'%s%s' % (title, ' (%s)' % year if year else ''),
|
'%s%s' % (title, ' (%s)' % year if year else ''),
|
||||||
'%s%s%s%s%s%s' % (
|
'%s%s%s%s%s%s' % (
|
||||||
data['title'],
|
data['title'],
|
||||||
|
|
Loading…
Reference in a new issue