add location to title
This commit is contained in:
parent
5ff1f8811b
commit
dae29640d2
1 changed files with 2 additions and 1 deletions
|
@ -35,7 +35,8 @@ def parse_path(client, path):
|
||||||
title = "%s, %s (%s)" % (info['subject1'], info['subject2'], date)
|
title = "%s, %s (%s)" % (info['subject1'], info['subject2'], date)
|
||||||
else:
|
else:
|
||||||
title = "%s (%s)" % (info['subject1'], date)
|
title = "%s (%s)" % (info['subject1'], date)
|
||||||
title = "%s %s" % (title, info['shooter'])
|
title = "%s %s at %s, %s" % (title,
|
||||||
|
info['shooter'],info['location2'],info['location1'])
|
||||||
|
|
||||||
r = {
|
r = {
|
||||||
'cinematographer': [info['shooter']],
|
'cinematographer': [info['shooter']],
|
||||||
|
|
Loading…
Reference in a new issue