From 38a99f7ae57c73a93738d366f5ecad584fd22a7c Mon Sep 17 00:00:00 2001 From: James Polley Date: Sun, 1 Oct 2017 14:50:53 +1100 Subject: [PATCH] And "discount" to EB discount descriptions --- .../registrasion/management/commands/populate_inventory.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pinaxcon/registrasion/management/commands/populate_inventory.py b/pinaxcon/registrasion/management/commands/populate_inventory.py index bb2cb210..77a43795 100644 --- a/pinaxcon/registrasion/management/commands/populate_inventory.py +++ b/pinaxcon/registrasion/management/commands/populate_inventory.py @@ -673,7 +673,7 @@ class Command(BaseCommand): early_bird_hobbyist_discount = self.find_or_make( cond.TimeOrStockLimitDiscount, ("description", ), - description="Early Bird Hobbyist", + description="Early Bird Discount - Hobbyist", end_time=datetime(year=2017, month=11, day=1), limit=150, # Across all users ) @@ -689,9 +689,9 @@ class Command(BaseCommand): early_bird = self.find_or_make( cond.TimeOrStockLimitDiscount, ("description", ), - description="Early Bird", + description="Early Bird Discount - Professional", end_time=datetime(year=2017, month=11, day=1), - limit=200, # Across professionals and hobbyists + limit=200, # Across professionals and fairy sponsors ) add_early_birds(early_bird)