From 406c8c076c692dbe41de969257d5cc02bcc86e77 Mon Sep 17 00:00:00 2001 From: Jordan Bertasso <36979824+jordanbertasso@users.noreply.github.com> Date: Sun, 8 Aug 2021 15:03:48 +1000 Subject: [PATCH] Fix typo under Admin Config > Accounts > Team Disbanding (#1973) Changed `capatins` to `captains` --- CTFd/forms/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CTFd/forms/config.py b/CTFd/forms/config.py index 9a7940e7..2fb61cd1 100644 --- a/CTFd/forms/config.py +++ b/CTFd/forms/config.py @@ -56,7 +56,7 @@ class AccountSettingsForm(BaseForm): ) team_disbanding = SelectField( "Team Disbanding", - description="Control whether team capatins are allowed to disband their own teams", + description="Control whether team captains are allowed to disband their own teams", choices=[ ("inactive_only", "Enabled for Inactive Teams"), ("disabled", "Disabled"),