summaryrefslogtreecommitdiff
path: root/checklists
diff options
context:
space:
mode:
authorJacob Walls <jacobtylerwalls@gmail.com>2026-01-26 17:49:51 -0500
committernessita <124304+nessita@users.noreply.github.com>2026-01-27 16:25:08 -0300
commitaf13cbaf8ec9f95cf18c92103928389f3a5d5ebc (patch)
tree0d3980b58fac93f614d85bdc468ca73a006a6ea2 /checklists
parent60981672a67377a255eefab5a9650fe4f9e568f3 (diff)
[checklists] Fix typo in checklist help text
Diffstat (limited to 'checklists')
-rw-r--r--checklists/migrations/0001_initial.py2
-rw-r--r--checklists/models.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/checklists/migrations/0001_initial.py b/checklists/migrations/0001_initial.py
index 2ee3c352..a3f18865 100644
--- a/checklists/migrations/0001_initial.py
+++ b/checklists/migrations/0001_initial.py
@@ -134,7 +134,7 @@ class Migration(migrations.Migration):
default="L",
help_text="Conditions beyond attacker control required to exploit (AC)",
max_length=8,
- verbose_name="CVSS Attack Complecity",
+ verbose_name="CVSS Attack Complexity",
),
),
(
diff --git a/checklists/models.py b/checklists/models.py
index 0553abc9..60bad0a8 100644
--- a/checklists/models.py
+++ b/checklists/models.py
@@ -584,7 +584,7 @@ class SecurityIssue(models.Model):
help_text="The context by which vulnerability exploitation is possible (AV)",
)
attack_complexity = models.CharField(
- "CVSS Attack Complecity",
+ "CVSS Attack Complexity",
max_length=8,
choices=CVSS_ATTACK_COMPLEXITY_CHOICES,
default="L",