From 541e321ce219674b6e07ce8093dffd9558ddcfdd Mon Sep 17 00:00:00 2001 From: Neal Gompa Date: Fri, 12 Jul 2024 09:21:01 -0400 Subject: [PATCH] Fix spelling of "organization" Signed-off-by: Neal Gompa --- mirrormanager2/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mirrormanager2/forms.py b/mirrormanager2/forms.py index 7371e339..c4a4a0a0 100644 --- a/mirrormanager2/forms.py +++ b/mirrormanager2/forms.py @@ -68,7 +68,7 @@ class AddSiteForm(FlaskForm): name = wtforms.StringField("Site name", [wtforms.validators.InputRequired()]) password = wtforms.StringField("Site Password", [wtforms.validators.InputRequired()]) org_url = wtforms.StringField( - "Organisation URL", + "Organization URL", [wtforms.validators.InputRequired()], ) private = wtforms.BooleanField("Private", default=False)