mirror of
https://github.com/Kunsi/pretalx-plugin-broadcast-tools
synced 2024-11-21 20:11:01 +00:00
export_voctomix_lower_thirds: no submission for talk means this is a break
This commit is contained in:
parent
07090626e9
commit
f63603d6de
1 changed files with 7 additions and 0 deletions
|
@ -286,6 +286,13 @@ class VoctomixLowerThirdsExporter:
|
|||
)
|
||||
continue
|
||||
|
||||
if talk.submission is None:
|
||||
self.log.info(
|
||||
f"Talk {talk.id} has no associated submission, this is a break. "
|
||||
"Skipping."
|
||||
)
|
||||
continue
|
||||
|
||||
self.log.info(f"Generating image(s) for talk {talk.submission.title!r}")
|
||||
generated_files.add(self.export_talk(talk))
|
||||
for speaker in talk.submission.speakers.all():
|
||||
|
|
Loading…
Reference in a new issue