Skip to content

Commit

Permalink
Lauds: Versicles from the Psalter
Browse files Browse the repository at this point in the history
  • Loading branch information
gregordick committed Jan 25, 2025
1 parent 1e1b9ec commit 7857799
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions scripts/bringup/bringup-datagen.py
Original file line number Diff line number Diff line change
Expand Up @@ -442,9 +442,10 @@ def make_out_key(key, do_basename):
out_key = 'psalterium/pasc/ad-vesperas/versiculum'
elif key == 'Hymnus Pasch Vespera':
out_key = 'psalterium/pasc/ad-vesperas/hymnus'
elif re.match(r'Day\d Versum 3$', key):
elif re.match(r'Day\d Versum [23]$', key):
day = int(key[3])
out_key = 'psalterium/%s/ad-vesperas/versiculum' % (util.day_ids[day],)
hour = 'vesperas' if key.endswith('3') else 'laudes'
out_key = f'psalterium/{util.day_ids[day]}/ad-{hour}/versiculum'
elif key == 'Gloria':
out_key = 'versiculi/gloria-patri-post-psalmum'
elif key == 'Requiem':
Expand Down

0 comments on commit 7857799

Please sign in to comment.