Skip to content
This repository was archived by the owner on Apr 29, 2022. It is now read-only.

Commit 7f5ddf8

Browse files
committed
hotfix for missing stream only fare code
1 parent 40f22c5 commit 7f5ddf8

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

conference/fares.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,11 @@
2424
FARE_CODE_VARIANTS = Choices(
2525
("S", "STANDARD", "Standard"),
2626
("L", "LIGHT", "Standard Light (no trainings)"),
27-
("T", "TRAINING", "Trainings (ep2018+)"), # Starting with EP2018
28-
("C", "COMBINED", "Combined (ep2019+)"), # Starting with EP2019
29-
("P", "SPRINT", "Sprints only"), # Starting with EP2020
27+
("T", "TRAINING", "Trainings (ep2018+)"), # Starting with EP2018
28+
("C", "COMBINED", "Combined (ep2019+)"), # Starting with EP2019
29+
("P", "SPRINT", "Sprints only"), # Starting with EP2020
3030
("D", "DAYPASS", "Day Pass"),
31+
("V", "STREAM", "Stream only"), # Starting with EP2021
3132
)
3233

3334
# Variants eligible for talk voting

0 commit comments

Comments
 (0)