Skip to content

Commit

Permalink
bw/bundles/loudness-rendering: fix KeyError
Browse files Browse the repository at this point in the history
  • Loading branch information
kunsi committed Dec 27, 2024
1 parent 71d6b7d commit ae46922
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bundlewrap/bundles/loudness-rendering/files/updater.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@

line2 = []
if talk:
if talk['do_not_record']:
if talk.get('do_not_record'):
line2.append('OPTOUT')
line2.append(talk['__start'].strftime('%H:%M'))
line2.append(talk['__end'].strftime('%H:%M'))
Expand Down

0 comments on commit ae46922

Please sign in to comment.