Skip to content

Commit 823a1ab

Browse files
authored
Update public.py
1 parent 7d4e243 commit 823a1ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

deployer/views/public.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def confirm_tournament(app_id):
5151
form = ConfirmTournamentForm()
5252

5353
if request.method == "POST" and form.validate_on_submit():
54-
cost = fixed_cost + base_cost + test_cost if form.add_test.data else base_cost
54+
cost = fixed_cost + base_cost + test_cost if form.add_test.data else base_cost + fixed_cost
5555
if stripe.charge(app.email, form.stripe_token.data, cost):
5656
app.set_status('Initializing')
5757
app.active = True

0 commit comments

Comments
 (0)