Merge pull request #22160 from edx/julianajlk/REV-980/first-purchase-discount-courseware-2

add missing parameter to discount_percentage
This commit is contained in:
Matthew Piatetsky
2019-10-25 17:10:58 -04:00
committed by GitHub

View File

@@ -113,7 +113,7 @@ def get_first_purchase_offer_banner_fragment(user, course):
'<div class="first-purchase-offer-banner"><span class="first-purchase-offer-banner-bold">'
),
discount_expiration_date=discount_expiration_date.strftime(u'%B %d'),
percentage=discount_percentage(),
percentage=discount_percentage(course),
span_close=HTML('</span>'),
div_close=HTML('</div>'),
strikeout_price=HTML(format_strikeout_price(user, course, check_for_discount=False)[0])