billing: Add comment to downgrading section in views.billing_home.

This commit is contained in:
Rishi Gupta 2018-08-22 18:43:11 -07:00
parent d081cf7b78
commit 16a5540e58
1 changed files with 3 additions and 1 deletions

View File

@ -257,7 +257,9 @@ def billing_home(request: HttpRequest) -> HttpResponse:
if prorated_charges < 0:
prorated_credits = -prorated_charges # nocoverage -- no way to get here yet
prorated_charges = 0 # nocoverage
else: # nocoverage -- no way to get here yet
# Can only get here by subscribing and then downgrading. We don't support downgrading
# yet, but keeping this code here since we will soon.
else: # nocoverage
plan_name = "Zulip Free"
seat_count = 0
renewal_date = ''