We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d4e243 commit 823a1abCopy full SHA for 823a1ab
deployer/views/public.py
@@ -51,7 +51,7 @@ def confirm_tournament(app_id):
51
form = ConfirmTournamentForm()
52
53
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
+ cost = fixed_cost + base_cost + test_cost if form.add_test.data else base_cost + fixed_cost
55
if stripe.charge(app.email, form.stripe_token.data, cost):
56
app.set_status('Initializing')
57
app.active = True
0 commit comments