From 4510cf2dd671ef6a5777d1523190b26f0c7c09bb Mon Sep 17 00:00:00 2001 From: Ulices Date: Sat, 6 May 2023 18:01:04 -0600 Subject: [PATCH] fix strarting -> starting (#4786) --- InvenTree/common/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InvenTree/common/models.py b/InvenTree/common/models.py index 2a035ddc80..f05a325f78 100644 --- a/InvenTree/common/models.py +++ b/InvenTree/common/models.py @@ -1584,7 +1584,7 @@ class InvenTreeSetting(BaseInvenTreeSetting): 'LOGIN_SIGNUP_MAIL_RESTRICTION': { 'name': _('Allowed domains'), - 'description': _('Restrict signup to certain domains (comma-separated, strarting with @)'), + 'description': _('Restrict signup to certain domains (comma-separated, starting with @)'), 'default': '', 'before_save': validate_email_domains, },