Changeset - 25eb14101ca8
[Not reviewed]
0 1 0
Christopher Neugebauer - 5 years ago 2018-09-05 02:56:30
chrisjrn@gmail.com
Fix EB cutoff
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
pinaxcon/registrasion/management/commands/populate_inventory.py
Show inline comments
...
 
@@ -358,13 +358,13 @@ class Command(BaseCommand):
 

	
 
        # Early Bird Discount (general public)
 
        early_bird = self.find_or_make(
 
            cond.TimeOrStockLimitDiscount,
 
            ("description", ),
 
            description="Early Bird",
 
            end_time=datetime(year=2017, month=10, day=20),
 
            end_time=datetime(year=2018, month=9, day=30),
 
            limit=100,  # Across all users
 
        )
 
        add_early_birds(early_bird)
 

	
 
        # Early bird rates for speakers
 
        speaker_ticket_discounts = self.find_or_make(
0 comments (0 inline, 0 general)