datengarten: consistent syntax
This commit is contained in:
parent
b4ced563ef
commit
dcf0f1ea35
1 changed files with 3 additions and 3 deletions
|
@ -97,7 +97,7 @@ def tasks(queue, args, idlist, skiplist):
|
||||||
for person in persons(scheduleUrl, personmap, taglinemap, event['id']):
|
for person in persons(scheduleUrl, personmap, taglinemap, event['id']):
|
||||||
queue.put(Rendertask(
|
queue.put(Rendertask(
|
||||||
infile = 'lower-third.svg',
|
infile = 'lower-third.svg',
|
||||||
outfile = "event_{}_person_{}.png".format(str(event['id']), str(person['id'])),
|
outfile = 'event_{}_person_{}.png'.format(str(event['id']), str(person['id'])),
|
||||||
parameters = {
|
parameters = {
|
||||||
'$PERSON': person['person'],
|
'$PERSON': person['person'],
|
||||||
'$TAGLINE': person['tagline'],
|
'$TAGLINE': person['tagline'],
|
||||||
|
@ -106,7 +106,7 @@ def tasks(queue, args, idlist, skiplist):
|
||||||
|
|
||||||
queue.put(Rendertask(
|
queue.put(Rendertask(
|
||||||
infile = 'lower-third.svg',
|
infile = 'lower-third.svg',
|
||||||
outfile = "event_{}_persons.png".format(str(event['id'])),
|
outfile = 'event_{}_persons.png'.format(str(event['id'])),
|
||||||
parameters = {
|
parameters = {
|
||||||
'$PERSON': event['personnames'],
|
'$PERSON': event['personnames'],
|
||||||
'$TAGLINE': '',
|
'$TAGLINE': '',
|
||||||
|
|
Loading…
Add table
Reference in a new issue